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