2025-06-16 19:30:01 +09:00
|
|
|
|
namespace UVC.UI.Toolbar
|
2025-06-13 17:10:58 +09:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 일반적인 클릭 버튼입니다.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class ToolbarStandardButton : ToolbarButtonBase
|
|
|
|
|
|
{
|
2025-06-16 19:30:01 +09:00
|
|
|
|
// 생성자 또는 초기화 메서드가 있다면 ICommand를 받도록 수정
|
|
|
|
|
|
// 예: public ToolbarStandardButton(ICommand command) { this.ClickCommand = command; }
|
|
|
|
|
|
|
|
|
|
|
|
// ToolbarButtonBase의 ExecuteClick을 그대로 사용하거나,
|
|
|
|
|
|
// 필요시 override 할 수 있습니다.
|
|
|
|
|
|
// public override void ExecuteClick()
|
|
|
|
|
|
// {
|
|
|
|
|
|
// base.ExecuteClick(); // 기본 Command 실행
|
|
|
|
|
|
// // 추가적인 StandardButton만의 로직
|
|
|
|
|
|
// }
|
2025-06-13 17:10:58 +09:00
|
|
|
|
}
|
|
|
|
|
|
}
|