Beispiel #1
0
 internal Box(Orientation dir)
 {
     children  = new ChildrenCollection <BoxPlacement> ((WidgetBackendHost)BackendHost);
     direction = dir;
 }
Beispiel #2
0
 public Notebook()
 {
     tabs = new ChildrenCollection <NotebookTab> ((EventSink)WidgetEventSink);
 }
Beispiel #3
0
 public Table()
 {
     placements = new ChildrenCollection <TablePlacement> ((WidgetBackendHost)BackendHost);
 }
Beispiel #4
0
 public Notebook()
 {
     tabs = new ChildrenCollection <NotebookTab> ((WidgetBackendHost)BackendHost);
 }
Beispiel #5
0
 public Table()
 {
     children = new ChildrenCollection <TablePlacement> ((EventSink)WidgetEventSink);
 }
Beispiel #6
0
 internal Box(Orientation dir)
 {
     children  = new ChildrenCollection <BoxPlacement> ((EventSink)WidgetEventSink);
     direction = dir;
 }
Beispiel #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;
 }