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