public EtoBox(GroupBoxHandler handler)
 {
     Title       = string.Empty;
     ContentView = new MacPanelView {
         Handler = handler
     };
 }
Exemplo n.º 2
0
 public EtoTabViewItem(IMacViewHandler handler)
 {
     Identifier = new NSString(Guid.NewGuid().ToString());
     View       = new MacPanelView {
         Handler = handler
     };
 }
Exemplo n.º 3
0
 public EtoBox(GroupBoxHandler handler)
 {
     Title         = string.Empty;
     TitlePosition = NSTitlePosition.NoTitle;
     ContentView   = new MacPanelView {
         Handler = handler
     };
 }