13 lines
243 B
C#
13 lines
243 B
C#
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; }
|
|
}
|
|
}
|