Пример #1
0
Файл: Box.cs Проект: wesreid/xwt
 internal Box(Orientation dir)
 {
     children  = new ChildrenCollection <BoxPlacement> ((WidgetBackendHost)BackendHost);
     direction = dir;
 }
Пример #2
0
 public Notebook()
 {
     tabs = new ChildrenCollection <NotebookTab> ((EventSink)WidgetEventSink);
 }
Пример #3
0
 public Table()
 {
     placements = new ChildrenCollection <TablePlacement> ((WidgetBackendHost)BackendHost);
 }
Пример #4
0
 public Notebook()
 {
     tabs = new ChildrenCollection <NotebookTab> ((WidgetBackendHost)BackendHost);
 }
Пример #5
0
 public Table()
 {
     children = new ChildrenCollection <TablePlacement> ((EventSink)WidgetEventSink);
 }
Пример #6
0
 internal Box(Orientation dir)
 {
     children  = new ChildrenCollection <BoxPlacement> ((EventSink)WidgetEventSink);
     direction = dir;
 }
Пример #7
0
 public Table()
 {
     children = new ChildrenCollection <TablePlacement> ((WidgetBackendHost)BackendHost);
     // For some reason the table has a black background by default in WPF. Lets work around that
     BackgroundColor = Colors.White;
 }