コード例 #1
0
ファイル: Box.cs プロジェクト: wesreid/xwt
 internal Box(Orientation dir)
 {
     children  = new ChildrenCollection <BoxPlacement> ((WidgetBackendHost)BackendHost);
     direction = dir;
 }
コード例 #2
0
ファイル: Notebook.cs プロジェクト: migueldeicaza/xwt
 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;
 }