Exemple #1
0
 public TreeStructureControl(ContentControl contentControl, AddressControl addressControl)
 {
     InitializeComponent();
     InitializeTree();
     this.contentControl = contentControl;
     this.addressControl = addressControl;
 }
Exemple #2
0
 public MainWindow()
 {
     InitializeComponent();
     addressControl       = new AddressControl();
     contentControl       = new ContentControl(addressControl);
     treeStructureControl = new TreeStructureControl(contentControl, addressControl);
     InitializeView();
 }
Exemple #3
0
 public ContentControl(AddressControl addressControl)
 {
     InitializeComponent();
     this.addressControl = addressControl;
 }