Exemplo n.º 1
0
Arquivo: Box.cs Projeto: wesreid/xwt
 internal Box(Orientation dir)
 {
     children  = new ChildrenCollection <BoxPlacement> ((WidgetBackendHost)BackendHost);
     direction = dir;
 }
Exemplo n.º 2
0
 public Notebook()
 {
     tabs = new ChildrenCollection <NotebookTab> ((EventSink)WidgetEventSink);
 }
Exemplo n.º 3
0
 public Table()
 {
     placements = new ChildrenCollection <TablePlacement> ((WidgetBackendHost)BackendHost);
 }
Exemplo n.º 4
0
 public Notebook()
 {
     tabs = new ChildrenCollection <NotebookTab> ((WidgetBackendHost)BackendHost);
 }
Exemplo n.º 5
0
 public Table()
 {
     children = new ChildrenCollection <TablePlacement> ((EventSink)WidgetEventSink);
 }
Exemplo n.º 6
0
 internal Box(Orientation dir)
 {
     children  = new ChildrenCollection <BoxPlacement> ((EventSink)WidgetEventSink);
     direction = dir;
 }
Exemplo n.º 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;
 }