Exemple #1
0
 protected RuntimeMenuObject(string name, RuntimeMenuType type, string tooltip, Image image, bool beginsGroup)
     : this(type)
 {
     this.name        = name;
     this.tooltip     = tooltip;
     this.image       = image;
     this.beginsGroup = beginsGroup;
 }
Exemple #2
0
 protected RuntimeMenuObject(RuntimeMenuType type)
 {
     this.type = type;
     children  = new List <RuntimeMenuObject>();
 }