Exemplo n.º 1
0
Arquivo: Box.cs Projeto: wesreid/xwt
 internal BoxPlacement(IContainerEventSink <BoxPlacement> parent, Widget child)
 {
     this.parent = parent;
     this.child  = child;
 }
Exemplo n.º 2
0
 internal NotebookTab(IContainerEventSink <NotebookTab> parent, Widget child)
 {
     this.child  = child;
     this.parent = parent;
 }
Exemplo n.º 3
0
 internal Panel(IContainerEventSink <Panel> parent, int numPanel)
 {
     this.parent   = parent;
     this.numPanel = numPanel;
 }