Modal 개발 완료. Toolbar 개발 중

This commit is contained in:
logonkhi
2025-06-13 17:10:58 +09:00
parent e8d52b3e90
commit 2ffe7abac6
37 changed files with 3278 additions and 466 deletions

View File

@@ -0,0 +1,16 @@
namespace UVC.UI.ToolBar
{
/// <summary>
/// 일반적인 클릭 버튼입니다.
/// </summary>
public class ToolbarStandardButton : ToolbarButtonBase
{
public override void ExecuteClick()
{
if (IsEnabled && OnClick != null)
{
OnClick.Invoke();
}
}
}
}