Exemplo n.º 1
0
 public ToolStripItemCodonAbstract(string pathPoint, string text, Image image, ToolStripItemDisplayStyle displayStyle, OnToolStripItemCodonActionHandler action)
 {
     PathPoint = pathPoint;
     if (text != null)
     {
         this._text = text;
     }
     if (image != null)
     {
         this.Image = image;
     }
     this.DisplayStyle = displayStyle;
     if (action != null)
     {
         Action = action;
     }
 }
Exemplo n.º 2
0
 public ToolStripItemCodonAbstract(string pathPoint, string text, Image image, OnToolStripItemCodonActionHandler action)
     : this(pathPoint, text, image, ToolStripItemDisplayStyle.Image, action)
 {
 }
Exemplo n.º 3
0
 public ToolStripItemCodonAbstract(string pathPoint, OnToolStripItemCodonActionHandler action)
     : this(pathPoint, null, null, ToolStripItemDisplayStyle.Image, action)
 {
 }
Exemplo n.º 4
0
 public ToolStripButtonCodon(string pathPoint, string text, Image image, System.Windows.Forms.ToolStripItemDisplayStyle displayStyle, OnToolStripItemCodonActionHandler action)
     : base(pathPoint, text, image, displayStyle, action)
 {
 }
 public ToolStripDropDownItemCodonAbstract(string pathPoint, string text, Image image, ToolStripItemDisplayStyle displayStyle, OnToolStripItemCodonActionHandler action)
     : base(pathPoint, text, image, displayStyle, action)
 {
 }
 public ToolStripDropDownItemCodonAbstract(string pathPoint, OnToolStripItemCodonActionHandler action)
     : base(pathPoint, action)
 {
 }
Exemplo n.º 7
0
 public ToolStripMenuItemCodon(string pathPoint, string text, OnToolStripItemCodonActionHandler action)
     : base(pathPoint, text, null, System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText, action)
 {
 }