コード例 #1
0
ファイル: Classes.cs プロジェクト: spectatorBH/pascalabcnet
 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;
 }
コード例 #2
0
ファイル: Classes.cs プロジェクト: lisiynos/pascalabcnet
 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;
 }
コード例 #3
0
ファイル: Classes.cs プロジェクト: spectatorBH/pascalabcnet
 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;
 }
コード例 #4
0
ファイル: Classes.cs プロジェクト: lisiynos/pascalabcnet
 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;
 }