Example #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;
 }
Example #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;
 }
Example #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;
 }
Example #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;
 }