Example #1
0
File: Box.cs Project: wesreid/xwt
 internal BoxPlacement(IContainerEventSink <BoxPlacement> parent, Widget child)
 {
     this.parent = parent;
     this.child  = child;
 }
Example #2
0
 internal NotebookTab(IContainerEventSink <NotebookTab> parent, Widget child)
 {
     this.child  = child;
     this.parent = parent;
 }
Example #3
0
 internal Panel(IContainerEventSink <Panel> parent, int numPanel)
 {
     this.parent   = parent;
     this.numPanel = numPanel;
 }