Ejemplo n.º 1
0
 public PluginGUIItem(string text, string hint, Image image, Color imageTransparentColor, PluginGUIItemExecuteDelegate executeDelegate)
 {
     this.text  = text;
     this.hint  = hint;
     this.image = image;
     this.imageTransparentColor = imageTransparentColor;
     this.executeDelegate       = executeDelegate;
 }
Ejemplo n.º 2
0
 public PluginGUIItem(string text, string hint, Image image, Color imageTransparentColor, PluginGUIItemExecuteDelegate executeDelegate)
 {
     this.text = text;
     this.hint = hint;
     this.image = image;
     this.imageTransparentColor = imageTransparentColor;
     this.executeDelegate = executeDelegate;
 }
Ejemplo n.º 3
0
 public PluginGUIItem(string text, string hint, Image image, Color imageTransparentColor, PluginGUIItemExecuteDelegate executeDelegate, System.Windows.Forms.Keys shortcutKeys, string shortcutKeyDisplayString)
 {
     this.text  = text;
     this.hint  = hint;
     this.image = image;
     this.imageTransparentColor    = imageTransparentColor;
     this.executeDelegate          = executeDelegate;
     this.shortcutKeys             = shortcutKeys;
     this.shortcutKeyDisplayString = shortcutKeyDisplayString;
 }
Ejemplo n.º 4
0
 public PluginGUIItem(string text, string hint, Image image, Color imageTransparentColor, PluginGUIItemExecuteDelegate executeDelegate, System.Windows.Forms.Keys shortcutKeys, string shortcutKeyDisplayString)
 {
     this.text = text;
     this.hint = hint;
     this.image = image;
     this.imageTransparentColor = imageTransparentColor;
     this.executeDelegate = executeDelegate;
     this.shortcutKeys = shortcutKeys;
     this.shortcutKeyDisplayString = shortcutKeyDisplayString;
 }