예제 #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;
 }