Пример #1
0
 /// <summary>
 /// Initializes a new instance of the RibbonItemGroup class with the specified text.
 /// </summary>
 internal RibbonItemGroup(string text, RibbonTabPage owner) : this(owner)
 {
     Text = text;
 }
Пример #2
0
 internal RibbonItemGroupCollection(RibbonTabPage owner)
 {
     this.owner = owner;
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the RibbonItemGroup class.
 /// </summary>
 internal RibbonItemGroup(RibbonTabPage owner)
 {
     Items = new MenuItemCollection(new MenuRootItem(owner.Owner));
     Owner = owner;
 }