This commit is contained in:
chi
2024-01-22 09:26:20 +09:00
parent ff50832bdd
commit 7278f66857
105 changed files with 13 additions and 1221 deletions

View File

@@ -0,0 +1,12 @@
using System.Drawing;
using System.Windows.Forms;
namespace YARTE.UI.Buttons
{
public interface IFunctionButton : IButton
{
void IconClicked(ButtonArgs doc, ToolStripButton btn);
string Label { get; set; }
}
}