예제 #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
파일: Table.cs 프로젝트: d5nguyenvan/xwt
 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;
 }