public void CustomizeView(SiteLocation model, NodeView nodeView)
        {
            var locCtrl = new LocationControl {
                DataContext = this
            };

            nodeView.inputGrid.Children.Add(locCtrl);
        }
Exemple #2
0
        public void SetupCustomUIElements(dynNodeView view)
        {
            var locCtrl = new LocationControl {
                DataContext = this
            };

            view.inputGrid.Children.Add(locCtrl);
        }
Exemple #3
0
 public void SetupCustomUIElements(dynNodeView view)
 {
     var locCtrl = new LocationControl { DataContext = this };
     view.inputGrid.Children.Add(locCtrl);
 }