示例#1
0
文件: Box.cs 项目: wesreid/xwt
 internal BoxPlacement(IContainerEventSink <BoxPlacement> parent, Widget child)
 {
     this.parent = parent;
     this.child  = child;
 }
示例#2
0
 internal NotebookTab(IContainerEventSink <NotebookTab> parent, Widget child)
 {
     this.child  = child;
     this.parent = parent;
 }
示例#3
0
 internal Panel(IContainerEventSink <Panel> parent, int numPanel)
 {
     this.parent   = parent;
     this.numPanel = numPanel;
 }