public static bool WalkTreeViewItem(TreeView tree, TreeViewItem treeViewItem, object selectedValue)
        {
            if (treeViewItem.DataContext == selectedValue)
            {
                treeViewItem.SetValue(TreeViewItem.IsSelectedProperty, true);
                treeViewItem.Focus();
                treeViewItem.BringIntoView();
                return true;
            }
            var itemsHostProperty = treeViewItem.GetType().GetProperty("ItemsHost", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);

            var itemsHost = itemsHostProperty?.GetValue(treeViewItem, null) as Panel;

            if (itemsHost == null)
            {
                return false;
            }

            foreach (var item in itemsHost.Children.OfType<TreeViewItem>())
            {
                var oldExpanded = item.IsExpanded;
                item.IsExpanded = true;
                item.UpdateLayout();
                if (WalkTreeViewItem(tree, item, selectedValue))
                {
                    return true;
                }
                item.IsExpanded = oldExpanded;
            }

            return false;
        }
Пример #2
0
        public void Initialize(DataUiGrid dataUiGrid, TreeView treeView)
        {
            mDataUiGrid = dataUiGrid;
            mTreeView = treeView;

            FillTreeView();
        }
Пример #3
0
        private void loadCompany() {
            TreeView treeView = new TreeView();


            foreach (Company companyItem in companies) {
                TreeViewItem treeViewItem = new TreeViewItem { Name = companyItem.Username, Header = companyItem.Username + " (" + companyItem.Trackers.Count.ToString() + ")", Background = Brushes.AliceBlue };

                if (companyItem.Trackers == null)
                    continue;

                foreach (Tracker tracker in companyItem.Trackers) {
                    TreeViewItem treeViewSubItem = new TreeViewItem { Name = "tracker" + tracker.TrackerImei, Header = tracker.TrackerImei };
                    treeViewItem.Items.Add(treeViewSubItem);
                }

                treeView.Items.Add(treeViewItem);
            }

            TabItem tabPage = new TabItem();

            tabPage.Header = "Companies";
            tabPage.Content = treeView;

            foreach (TabItem tabItem in tabControl.Items) {
                if (tabItem.Header == tabPage.Header) {
                    tabControl.Items.Remove(tabItem);
                    break;
                }
            }

            tabControl.Items.Add(tabPage);
        }
Пример #4
0
 public ViewModel(Viewport3DX viewport,TreeView _treeview)
 {
     Viewport3D = viewport;
     viewController = new ViewController();
     Model = new Element3DCollection();
     viewController.InitGraphics(Viewport3D, Model,_treeview);
 }
Пример #5
0
 /// <summary>
 /// Takes a tree view item and returns the specified item.
 /// </summary>
 /// <param name="tv">The TreeView to search.</param>
 /// <param name="parentName">Name of the parent item in the tree node.  Blank or null if there is no parent.</param>
 /// <param name="itemName"></param>
 /// <returns></returns>
 public static TreeViewItem GetTreeViewItem(TreeView tv, string parentName, string itemName)
 {
     foreach (TreeViewItem tvi in tv.Items)
     {
         if (!String.IsNullOrWhiteSpace(parentName))
         {
             if (tvi.Header.ToString() == parentName)
             {
                 foreach (TreeViewItem tvi_ in tvi.Items)
                 {
                     if (tvi_.Header.ToString() == itemName)
                     {
                         return tvi_;
                     }
                 }
             }
         }
         else
         {
             if (tvi.Header.ToString() == itemName)
             {
                 return tvi;
             }
         }
     }
     return null;
 }
Пример #6
0
 public void GetCurrentUserInstalledPrograms(TreeView treeView)
 {
     if (Environment.OSVersion.Version.Major != 10) return;
     var regLocation = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall");
     var installedPrograms = regLocation.GetSubKeyNames().Select(programName => regLocation.OpenSubKey(programName)).Select(subKey => subKey.GetValue("DisplayName").ToString()).ToList();
     DocumentsToTree(treeView, installedPrograms, "Current User Programs");
 }
Пример #7
0
        void BuildDockingLayout()
        {
            dockManager.Content = null;

            //TreeView dockable content
            var trv = new TreeView();
            trv.Items.Add(new TreeViewItem() { Header = "Item1" });
            trv.Items.Add(new TreeViewItem() { Header = "Item2" });
            trv.Items.Add(new TreeViewItem() { Header = "Item3" });
            trv.Items.Add(new TreeViewItem() { Header = "Item4" });
            ((TreeViewItem)trv.Items[0]).Items.Add(new TreeViewItem() { Header = "SubItem1" });
            ((TreeViewItem)trv.Items[0]).Items.Add(new TreeViewItem() { Header = "SubItem2" });
            ((TreeViewItem)trv.Items[1]).Items.Add(new TreeViewItem() { Header = "SubItem3" });
            ((TreeViewItem)trv.Items[2]).Items.Add(new TreeViewItem() { Header = "SubItem4" });
            var treeviewContent = new DockableContent() { Title = "Explorer", Content = trv };

            treeviewContent.Show(dockManager, AnchorStyle.Bottom);

            //TextBox invo dockable content
            var treeviewInfoContent = new DockableContent() { Title = "Explorer Info", Content = new TextBox() { Text = "Explorer Info Text", IsReadOnly = true } };
            treeviewContent.ContainerPane.Items.Add(treeviewInfoContent);

            //ListView dockable content
            var gridView = new GridView();
            gridView.Columns.Add(new GridViewColumn() { Header = "Date" });
            gridView.Columns.Add(new GridViewColumn() { Header = "Day Of Weeek", DisplayMemberBinding = new Binding("DayOfWeek") });
            gridView.Columns.Add(new GridViewColumn() { Header = "Year", DisplayMemberBinding = new Binding("Year") });
            gridView.Columns.Add(new GridViewColumn() { Header = "Month", DisplayMemberBinding = new Binding("Month") });
            gridView.Columns.Add(new GridViewColumn() { Header = "Second", DisplayMemberBinding = new Binding("Second") });
            var listView = new ListView() { View = gridView };
            listView.Items.Add(DateTime.Now);
            listView.Items.Add(DateTime.Now.AddYears(-1));
            listView.Items.Add(DateTime.Now.AddMonths(15));
            listView.Items.Add(DateTime.Now.AddHours(354));

            var listViewContent = new DockableContent() { Title = "Date & Times", Content = listView };
            listViewContent.ShowAsFloatingWindow(dockManager, true);

            //TextBox dockable content
            var textboxSampleContent = new DockableContent() { Title = "Date & Times Info", Content = new TextBox() { Text = "Date & Times Info Text", IsReadOnly = true } };
            listViewContent.ContainerPane.Items.Add(textboxSampleContent);

            //DataGrid document
            //var dataGrid = new DataGrid();
            //var rnd = new Random();
            //var data = new List<Tuple<double, double, double, double>>();
            //for (int i = 0; i < 100; i++)
            //{
            //    data.Add(Tuple.Create(rnd.NextDouble(), rnd.NextDouble() * 10.0, rnd.NextDouble() * 100.0, rnd.NextDouble() * 1000.0));
            //}

            //dataGrid.ItemsSource = data;

            //var dataGridDocument = new DocumentContent() { Title = "Data", IsLocked = true, Content = dataGrid };
            //dataGridDocument.Show(dockManager);

            ////DataGrid Info Text sample
            //var dataGridInfoContent = new DockableContent() { Title = "Data Info", Content = new TextBox() { Text = "Data Info Text" } };
            //dataGridInfoContent.ShowAsDocument(dockManager);
        }
        public Result(TypeOfDepth depth, String attributeName, String value)
        {
            InitializeComponent();
            if (depth != TypeOfDepth.Post)
            {
                dataGrid1.Visibility = System.Windows.Visibility.Hidden;
                label1.Visibility = System.Windows.Visibility.Hidden;
                textBlock1.Visibility = System.Windows.Visibility.Hidden;
            }
            dataGrid1.AutoGenerateColumns = true;
            /*
            DataGridTextColumn dgtc = new DataGridTextColumn();
            dgtc.Header = "Attribute";
            dataGrid1.Columns.Add(dgtc);
            DataGridTextColumn dgtc2 = new DataGridTextColumn();
            dgtc2.Header = "Value";
            dataGrid1.Columns.Add(dgtc2);
            */
            this.depth = depth;
            this.attributeName = attributeName;
            this.value = value;
            this.searcher=new Searcher();
            this.resultList = new List<dynamic>();

            s = searcher;
            list = resultList;
            tree = treeView1;
       }
        /// <summary>
        /// Create TreeView with fields that user can use to create a new object with selected type
        /// </summary>
        public void CreateFieldsForSelectedReportType(object inReportType, TreeView viewElement)
        {
            if (inReportType == null)
            {
                return;
            }

            if (!(inReportType is Type))
            {
                return;
            }

            if (viewElement == null)
            {
                return;
            }

            Type inType = (Type) inReportType;

            viewElement.Items.Clear();

            TreeViewItem newTreeViewItem = new TreeViewItem();
            newTreeViewItem.Header = ((Type)inReportType).Name;
            newTreeViewItem.IsExpanded = true;

            viewElement.Items.Add(newTreeViewItem);

            ConstructTreeWithFields(inType, newTreeViewItem);

        }
 // Static Methods
 private static TreeViewItem GetTreeViewItemFromPoint(TreeView treeView, Point point)
 {
     DependencyObject obj = treeView.InputHitTest(point) as DependencyObject;
     while (obj != null && !(obj is TreeViewItem))
         obj = VisualTreeHelper.GetParent(obj);
     return obj as TreeViewItem;
 }
        protected override void Attach()
        {
            _control = ControlObject as TreeView;
            List<TreeViewItem> items = new List<TreeViewItem>();
            HeaderedItemsControlUtility.GetChildren(_control, items);
            foreach (var element in items)
            {
                var item = element;
                string text = HeaderedItemsControlUtility.GetItemText(item);
                if (string.IsNullOrEmpty(text))
                {
                    continue;
                }

                RoutedEventHandler opened = (s, e) =>
                {
                    Expanded(item, new string[] { text });
                };
                item.Expanded += opened;

                RoutedEventHandler click = (s, e) =>
                {
                    SelectedChanged(item, new string[] { text });
                };
                item.Selected += click;
                item.Unselected += click;

                _detach.Add(() =>
                {
                    item.Expanded -= opened;
                    item.Selected -= click;
                    item.Unselected -= click;
                });
            }
        }
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.productTreeView_ = ((System.Windows.Controls.TreeView)(target));
     return;
     case 2:
     
     #line 12 "..\..\..\PositionMaster\NewProductView.xaml"
     ((System.Windows.Controls.TreeViewItem)(target)).Selected += new System.Windows.RoutedEventHandler(this.TreeViewItem_Selected_1);
     
     #line default
     #line hidden
     return;
     case 3:
     
     #line 21 "..\..\..\PositionMaster\NewProductView.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
        /// <summary>
        /// テンプレート適用時の処理
        /// </summary>
        public override void OnApplyTemplate()
        {
            base.OnApplyTemplate();

            this.MainTree = this.Template.FindName(PART_MainTree, this) as TreeView;

            Initilization();
        }
Пример #14
0
 public QueryManager(Project project, TreeView tree, WorkItemStore itemStore)
 {
     ItemStore = itemStore;
     this.project = project;
     Tree = tree;
     project.QueryHierarchy.Refresh();
     BuildQueryHierarchy(project.QueryHierarchy);
 }
Пример #15
0
 public static void ClearSelection(TreeView tree)
 {
     foreach (TreeViewItem selectedItem in GetTreeViewItems(tree))
     {
         selectedItem.SetValue(IsSelectedProperty, false);
     }
     NotifySelectionChangedListeners(tree);
 }
Пример #16
0
        public List<dynamic> search(DBModule.TypeOfDepth depth, String value,TreeView treeView1)
        {
            //IDataBase dataBase = new DataBase();
            ResultList = DataBase.ReceiveResults(depth, value);
            addDataToTree(treeView1, new List<dynamic>(), ResultList, depth, value, 0);

            return ResultList;
        }
            public SelectionChangedInhibitor(WPFControls.TreeView treeView)
            {
                this.Target = treeView;

                OriginalIsSelectionChangeActiveValue = (bool)IsSelectionChangeActiveProperty.GetValue(Target, null);

                //# suppress selection change notification
                IsSelectionChangeActiveProperty.SetValue(Target, true, null);
            }
Пример #18
0
 /// <summary>
 /// 展开最后一个节点
 /// </summary>
 /// <param name="treeView"></param>
 public static void ExpandLastNode(TreeView treeView)
 {
     if (treeView.Items.Count > 0)
     {
         var lastModel = treeView.Items[treeView.Items.Count - 1];
         TreeViewItem currentContainer = treeView.ItemContainerGenerator.ContainerFromItem(lastModel) as TreeViewItem;
         currentContainer.IsExpanded = true;
     }
 }
Пример #19
0
 private void Parse_doc(XmlDocument doc, TreeView treeView)
 {
     XmlNodeTreeViewItem tvi = new XmlNodeTreeViewItem();
     XmlNode node = doc.FirstChild;
     tvi.Header = node.Name;
     tvi.Node = node;
     Parse_Node(tvi);
     treeView.Items.Add(tvi);
 }
Пример #20
0
 private void ToggleTreeViewItems(TreeView tv, TreeViewItem selected)
 {
     foreach (var item in tv.Items)
     {
         TreeViewItem tvi = (TreeViewItem)(tv.ItemContainerGenerator.ContainerFromIndex(tv.Items.IndexOf(item)));
         if (!tvi.IsSelected)
             tvi.IsExpanded = false;
     }
 }
        public ProjectTreeView(TreeImageView parentView)
        {
            this.parentView = parentView;
            this.parentTree = parentView.treeView;

            ProjectManifest.OnProjectUpdated += Update;

            Update();
        }
Пример #22
0
 public Behaviour(TreeView view)
 {
     this.view = view;
     view.SelectedItemChanged += (sender, e) =>
     {
         TreeViewBehaviour.SetSelectedItem(view, e.NewValue);
         ExecuteCommand(sender);
     };
 }
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.DictionaryIndex = ((System.Windows.Controls.TreeView)(target));
     return;
     }
     this._contentLoaded = true;
 }
Пример #24
0
        public MainViewModel(Viewport3DX viewport, TreeView treeview)
        {
            // ----------------------------------------------
            // titles
            this.Title = "Ifc Viewer";
            this.SubTitle = "By LinJiarui";

            // ----------------------------------------------
            // camera setup
            this.Camera = new PerspectiveCamera { Position = new Point3D(8, 9, 7), LookDirection = new Vector3D(-5, -12, -5), UpDirection = new Vector3D(0, 0, 1) };

            // ----------------------------------------------
            // setup scene
            this.AmbientLightColor = new Color4(0.2f, 0.2f, 0.2f, 1.0f);

            this.RenderLight1 = true;
            this.RenderLight2 = false;
            this.RenderLight3 = false;
            this.RenderLight4 = true;

            this.Light1Color = (Color4)Color.White;
            this.Light2Color = (Color4)Color.Red;
            this.Light3Color = (Color4)Color.LightYellow;
            this.Light4Color = (Color4)Color.LightBlue;

            this.Light2Attenuation = new Vector3(1.0f, 0.5f, 0.10f);
            this.Light3Attenuation = new Vector3(1.0f, 0.1f, 0.05f);
            this.Light4Attenuation = new Vector3(1.0f, 0.2f, 0.0f);

            this.Light1Direction = new Vector3(0, -10, -10);
            this.Light1Transform = new TranslateTransform3D(-Light1Direction.ToVector3D());
            //            this.Light1DirectionTransform = CreateAnimatedTransform2(-Light1Direction.ToVector3D(), new Vector3D(0, 1, -1), 24);

            //            this.Light2Transform = CreateAnimatedTransform1(new Vector3D(-4, 0, 0), new Vector3D(0, 0, 1), 3);
            //            this.Light3Transform = CreateAnimatedTransform1(new Vector3D(0, 0, 4), new Vector3D(0, 1, 0), 5);

            this.Light4Direction = new Vector3(0, -5, 0);
            this.Light4Transform = new TranslateTransform3D(-Light4Direction.ToVector3D());
            //            this.Light4DirectionTransform = CreateAnimatedTransform2(-Light4Direction.ToVector3D(), new Vector3D(1, 0, 0), 12);

            // ----------------------------------------------
            // light model3d
            var sphere = new MeshBuilder();
            sphere.AddSphere(new Vector3(0, 0, 0), 0.2);
            Sphere = sphere.ToMeshGeometry3D();
            this.LightModelMaterial = new PhongMaterial {
                AmbientColor = Color.Gray,
                DiffuseColor = Color.Gray,
                EmissiveColor = Color.Yellow,
                SpecularColor = Color.Black,
            };

            viewController = new ViewController();
            Model = new Element3DCollection();
            viewController.InitGraphics(viewport, Model, treeview);
        }
        public void SetFilter(TestCaseFilter filter)
        {
            RuleList.Items.Clear();
            foreach (var group in filter)
            {
                TreeView ruleTree = new TreeView();
                CheckBox selectAll = new CheckBox()
                {
                    Content = "(Select All)",
                    IsChecked = group.IsSelected,
                    Focusable = false,
                    Tag = group
                };
                selectAll.Checked += (sender, arg) =>
                {
                    if (group.IsSelected != true) group.IsSelected = true;
                };
                selectAll.Unchecked += (sender, arg) =>
                {
                    if (group.IsSelected != false) group.IsSelected = false;
                };
                group.PropertyChanged += (sender, arg) =>
                {
                    if (arg.PropertyName == "IsSelected")
                    {
                        selectAll.IsChecked = group.IsSelected;
                    }
                };

                ruleTree.Items.Add(selectAll);

                AddItems(ruleTree.Items, group);
                Expander expander = new Expander()
                {
                    Header = group.Name,
                    Content = ruleTree,
                    IsExpanded = true
                };
                RuleList.Items.Add(expander);
                ruleTree.KeyDown += (sender, arg) =>
                {
                    if (arg.Key != Key.Space) return;
                    var tv = sender as TreeView;
                    if (tv == null) return;
                    ToggleTreeview(tv);
                };
                ruleTree.PreviewMouseWheel += ScrollViewer_PreviewMouseWheel;
                ruleTree.MouseDoubleClick += (sender, arg) =>
                {
                    if (arg.ChangedButton != MouseButton.Left) return;
                    var tv = sender as TreeView;
                    if (tv == null) return;
                    ToggleTreeview(tv);
                };
            }
        }
 public virtual void TreeViewAutomationPeerTypeAndClass()
 {
     TreeView view = new TreeView();
     TreeViewAutomationPeer peer = null;
     TestAsync(
         view,
         () => peer = FrameworkElementAutomationPeer.CreatePeerForElement(view) as TreeViewAutomationPeer,
         () => Assert.AreEqual(AutomationControlType.Tree, peer.GetAutomationControlType(), "Unexpected AutomationControlType!"),
         () => Assert.AreEqual("TreeView", peer.GetClassName(), "Unexpected ClassType!"));
 }
Пример #27
0
        public MappingViewModel(TreeView _tree)
        {
            tree = _tree;

            TestPlans = new ObservableCollection<TestObjectViewModel>();
            
            TfsShared.Instance.Connected += Instance_Connected;

            CreateTestPlanCommand = new DelegateCommand(CreatePlan, CanWork);
        }
Пример #28
0
 private static void SelectedItemSync_Changed (TreeView tree, DpChangedEventArgs<bool> args)
 {
     if (args.OldValue)
         tree.SelectedItemChanged -= TreeView_SelectedItemChanged;
     if (args.NewValue) {
         tree.SelectedItemChanged += TreeView_SelectedItemChanged;
         var item = GetSelectedItem(tree);
         TreeView_SelectedItemChanged(tree, new RoutedPropertyChangedEventArgs<object>(item, item));
     }
 }
 public void BindableSelectedItemBehavior_Attach_ToTreeView_AssociatedObjectIsSetToTreeView()
 {
     //------------Setup for test--------------------------
     var behavior = new SelectedBehavior();
     var treeView = new TreeView();
     //------------Execute Test---------------------------
     behavior.Attach(treeView);
     //------------Assert Results-------------------------
     Assert.AreEqual(treeView, behavior.GetAssociatedObject());
 }
Пример #30
0
        public ExplorerView(TreeView testTree, TreeView fixtureTree, IScreenConductor conductor,
            IScreenObjectLocator screenObjects)
        {
            _testTree = testTree;
            _fixtureTree = fixtureTree;
            _conductor = conductor;
            _screenObjects = screenObjects;

            _testTree.MouseDoubleClick += unLatch;
        }
Пример #31
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.title = ((System.Windows.Controls.Label)(target));
                return;

            case 2:
                this.sq00 = ((System.Windows.Controls.Grid)(target));
                return;

            case 3:

            #line 62 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 4:
                this.sq01 = ((System.Windows.Controls.Grid)(target));
                return;

            case 5:

            #line 73 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 6:
                this.sq02 = ((System.Windows.Controls.Grid)(target));
                return;

            case 7:

            #line 84 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 8:
                this.sq03 = ((System.Windows.Controls.Grid)(target));
                return;

            case 9:

            #line 95 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 10:
                this.sq04 = ((System.Windows.Controls.Grid)(target));
                return;

            case 11:

            #line 106 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 12:
                this.sq10 = ((System.Windows.Controls.Grid)(target));
                return;

            case 13:

            #line 117 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 14:
                this.sq11 = ((System.Windows.Controls.Grid)(target));
                return;

            case 15:

            #line 128 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 16:
                this.sq12 = ((System.Windows.Controls.Grid)(target));
                return;

            case 17:

            #line 139 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 18:
                this.sq13 = ((System.Windows.Controls.Grid)(target));
                return;

            case 19:

            #line 150 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 20:
                this.sq14 = ((System.Windows.Controls.Grid)(target));
                return;

            case 21:

            #line 161 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 22:
                this.sq20 = ((System.Windows.Controls.Grid)(target));
                return;

            case 23:

            #line 172 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 24:
                this.sq21 = ((System.Windows.Controls.Grid)(target));
                return;

            case 25:

            #line 183 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 26:
                this.sq22 = ((System.Windows.Controls.Grid)(target));
                return;

            case 27:

            #line 194 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 28:
                this.sq23 = ((System.Windows.Controls.Grid)(target));
                return;

            case 29:

            #line 205 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 30:
                this.sq24 = ((System.Windows.Controls.Grid)(target));
                return;

            case 31:

            #line 216 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 32:
                this.sq30 = ((System.Windows.Controls.Grid)(target));
                return;

            case 33:

            #line 227 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 34:
                this.sq31 = ((System.Windows.Controls.Grid)(target));
                return;

            case 35:

            #line 238 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 36:
                this.sq32 = ((System.Windows.Controls.Grid)(target));
                return;

            case 37:

            #line 249 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 38:
                this.sq33 = ((System.Windows.Controls.Grid)(target));
                return;

            case 39:

            #line 260 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 40:
                this.sq34 = ((System.Windows.Controls.Grid)(target));
                return;

            case 41:

            #line 271 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 42:
                this.sq40 = ((System.Windows.Controls.Grid)(target));
                return;

            case 43:

            #line 282 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 44:
                this.sq41 = ((System.Windows.Controls.Grid)(target));
                return;

            case 45:

            #line 293 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 46:
                this.sq42 = ((System.Windows.Controls.Grid)(target));
                return;

            case 47:

            #line 304 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 48:
                this.sq43 = ((System.Windows.Controls.Grid)(target));
                return;

            case 49:

            #line 315 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 50:
                this.sq44 = ((System.Windows.Controls.Grid)(target));
                return;

            case 51:

            #line 326 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Reveal);

            #line default
            #line hidden
                return;

            case 52:
                this.across = ((System.Windows.Controls.Label)(target));
                return;

            case 53:
                this.down = ((System.Windows.Controls.Label)(target));
                return;

            case 54:
                this.robot = ((System.Windows.Controls.Label)(target));
                return;

            case 55:
                this.FolderView = ((System.Windows.Controls.TreeView)(target));
                return;

            case 56:

            #line 362 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Update);

            #line default
            #line hidden
                return;

            case 57:

            #line 363 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Show_Solution);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #32
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.tvwExplorer = ((System.Windows.Controls.TreeView)(target));
                return;

            case 2:
                this.tbHeader = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 3:
                this.zoomSlider = ((System.Windows.Controls.Slider)(target));
                return;

            case 4:
                this.chart = ((Visifire.Charts.Chart)(target));
                return;

            case 5:
                this.btnStop = ((System.Windows.Controls.Button)(target));

            #line 97 "..\..\..\MainWindow.xaml"
                this.btnStop.Click += new System.Windows.RoutedEventHandler(this.btnStop_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.tbType = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 7:
                this.cboChartType = ((System.Windows.Controls.ComboBox)(target));

            #line 103 "..\..\..\MainWindow.xaml"
                this.cboChartType.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cboChartType_SelectionChanged);

            #line default
            #line hidden
                return;

            case 8:
                this.tbLastNDays = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 9:
                this.txtLastNDays = ((System.Windows.Controls.TextBox)(target));
                return;

            case 10:
                this.tbFolder = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 11:
                this.txtPath = ((System.Windows.Controls.TextBox)(target));
                return;

            case 12:
                this.btnShowDayStats = ((System.Windows.Controls.Button)(target));

            #line 116 "..\..\..\MainWindow.xaml"
                this.btnShowDayStats.Click += new System.Windows.RoutedEventHandler(this.btnShowDayStats_Click);

            #line default
            #line hidden
                return;

            case 13:
                this.sbMessage = ((System.Windows.Controls.Primitives.StatusBar)(target));
                return;

            case 14:
                this.tbSize = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #33
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 14 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuClicked);

            #line default
            #line hidden
                return;

            case 2:

            #line 17 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuClicked);

            #line default
            #line hidden
                return;

            case 3:
                this.treeViewRoot = ((System.Windows.Controls.TreeView)(target));
                return;

            case 4:
                this.treeContextMenu = ((System.Windows.Controls.ContextMenu)(target));

            #line 24 "..\..\MainWindow.xaml"
                this.treeContextMenu.ContextMenuOpening += new System.Windows.Controls.ContextMenuEventHandler(this.TreeContextMenu_ContextMenuOpening);

            #line default
            #line hidden
                return;

            case 5:
                this.menuOpen = ((System.Windows.Controls.MenuItem)(target));

            #line 25 "..\..\MainWindow.xaml"
                this.menuOpen.Click += new System.Windows.RoutedEventHandler(this.MenuClicked);

            #line default
            #line hidden
                return;

            case 6:
                this.menuCreate = ((System.Windows.Controls.MenuItem)(target));

            #line 26 "..\..\MainWindow.xaml"
                this.menuCreate.Click += new System.Windows.RoutedEventHandler(this.MenuClicked);

            #line default
            #line hidden
                return;

            case 7:

            #line 27 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuClicked);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #34
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.sequenceViewExpander = ((System.Windows.Controls.Expander)(target));
                return;

            case 2:
                this.AssemblyGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 3:
                this.sequenceViewer = ((System.Windows.Controls.Grid)(target));
                return;

            case 4:
                this.customSequenceView = ((SequenceAssembler.ConsensusCustomView)(target));
                return;

            case 5:
                this.assemblePane = ((System.Windows.Controls.DockPanel)(target));
                return;

            case 6:
                this.btnAssemble = ((System.Windows.Controls.Button)(target));
                return;

            case 7:
                this.btnAlign = ((System.Windows.Controls.Button)(target));
                return;

            case 8:
                this.sequenceViewZoomPanel = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 9:
                this.sequenceViewZoomSlider = ((System.Windows.Controls.Slider)(target));

            #line 270 "..\..\AssemblerPane.xaml"
                this.sequenceViewZoomSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.OnSequenceViewZoomSliderValueChanged);

            #line default
            #line hidden
                return;

            case 10:
                this.assembleProgress = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 11:
                this.assemblyInProgressText = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 12:
                this.btnCancelAssembly = ((System.Windows.Controls.Button)(target));
                return;

            case 13:
                this.sequenceTree = ((System.Windows.Controls.TreeView)(target));
                return;

            case 14:
                this.consensusViewExpander = ((System.Windows.Controls.Expander)(target));
                return;

            case 15:
                this.assemblyResultTab = ((System.Windows.Controls.TabControl)(target));
                return;

            case 16:
                this.stkAssemblyReport = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 17:
                this.txtInputSequence = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 18:
                this.txtAlignmentAlgorithm = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 19:
                this.txtTotalTime = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 20:
                this.txtStartTime = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 21:
                this.txtEndTime = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 22:
                this.numberOfContigsLabel = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 23:
                this.txtContigs = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 24:
                this.txtUnAssembledCountGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 25:
                this.txtUnAssembled = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 26:
                this.txtLengthGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 27:
                this.txtLength = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 28:
                this.customViewTab = ((System.Windows.Controls.TabItem)(target));
                return;

            case 29:
                this.consensusCustomView = ((SequenceAssembler.ConsensusCustomView)(target));
                return;

            case 30:
                this.stkWebProgressBar = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 31:
                this.cancelServiceBtn = ((System.Windows.Controls.Button)(target));
                return;

            case 32:
                this.stkWebService = ((System.Windows.Controls.DockPanel)(target));
                return;

            case 33:
                this.cmbWebServices = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 34:
                this.executeServiceBtn = ((System.Windows.Controls.Button)(target));
                return;

            case 35:
                this.consensusViewZoomPanel = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 36:
                this.consensusViewZoomSlider = ((System.Windows.Controls.Slider)(target));

            #line 452 "..\..\AssemblerPane.xaml"
                this.consensusViewZoomSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.OnConsensusViewZoomSliderValueChanged);

            #line default
            #line hidden
                return;

            case 37:
                this.consensusTreeViewCaption = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 38:
                this.consensusTree = ((System.Windows.Controls.TreeView)(target));
                return;

            case 39:
                this.treeViewConsensus = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 40:
                this.blastResultsExpander = ((System.Windows.Controls.Expander)(target));
                return;

            case 41:
                this.webServicePresenter = ((SequenceAssembler.BlastPane)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #35
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\Schedule2.xaml"
                ((My.University.Schedule2)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden

            #line 8 "..\..\Schedule2.xaml"
                ((My.University.Schedule2)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing);

            #line default
            #line hidden
                return;

            case 2:
                this.label = ((System.Windows.Controls.Label)(target));
                return;

            case 3:
                this.label_Copy = ((System.Windows.Controls.Label)(target));
                return;

            case 4:
                this.cmb_major = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 5:
                this.cmb_minor = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 6:
                this.trv_req = ((System.Windows.Controls.TreeView)(target));

            #line 14 "..\..\Schedule2.xaml"
                this.trv_req.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.trv_req_SelectedItemChanged);

            #line default
            #line hidden

            #line 14 "..\..\Schedule2.xaml"
                this.trv_req.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.trv_req_MouseDoubleClick);

            #line default
            #line hidden
                return;

            case 7:
                this.dataGrid = ((System.Windows.Controls.DataGrid)(target));

            #line 29 "..\..\Schedule2.xaml"
                this.dataGrid.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.dataGrid_SelectionChanged);

            #line default
            #line hidden

            #line 29 "..\..\Schedule2.xaml"
                this.dataGrid.LoadingRow += new System.EventHandler <System.Windows.Controls.DataGridRowEventArgs>(this.dataGrid_LoadingRow);

            #line default
            #line hidden
                return;

            case 8:
                this.textBlock = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 9:
                this.button = ((System.Windows.Controls.Button)(target));

            #line 33 "..\..\Schedule2.xaml"
                this.button.Click += new System.Windows.RoutedEventHandler(this.button_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.button1 = ((System.Windows.Controls.Button)(target));

            #line 38 "..\..\Schedule2.xaml"
                this.button1.Click += new System.Windows.RoutedEventHandler(this.button1_Click);

            #line default
            #line hidden
                return;

            case 11:
                this.documentViewer = ((System.Windows.Controls.DocumentViewer)(target));
                return;

            case 12:
                this.button2 = ((System.Windows.Controls.Button)(target));

            #line 40 "..\..\Schedule2.xaml"
                this.button2.Click += new System.Windows.RoutedEventHandler(this.button2_Click);

            #line default
            #line hidden
                return;

            case 13:
                this.grad = ((System.Windows.Shapes.Rectangle)(target));

            #line 45 "..\..\Schedule2.xaml"
                this.grad.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.grad_MouseDown);

            #line default
            #line hidden
                return;

            case 14:
                this.grad_Copy = ((System.Windows.Shapes.Rectangle)(target));

            #line 51 "..\..\Schedule2.xaml"
                this.grad_Copy.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.grad_Copy_MouseDown);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #36
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.grid1 = ((System.Windows.Controls.Grid)(target));
                return;

            case 2:
                this.dgDataAndReg = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 3:
                this.grid2 = ((System.Windows.Controls.Grid)(target));
                return;

            case 4:
                this.btnGetResult = ((System.Windows.Controls.Button)(target));

            #line 55 "..\..\..\..\Communication\UI\WinCommWritePLC.xaml"
                this.btnGetResult.Click += new System.Windows.RoutedEventHandler(this.btnGetResult_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.btnGetReg = ((System.Windows.Controls.Button)(target));

            #line 56 "..\..\..\..\Communication\UI\WinCommWritePLC.xaml"
                this.btnGetReg.Click += new System.Windows.RoutedEventHandler(this.btnGetReg_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.btnExe = ((System.Windows.Controls.Button)(target));
                return;

            case 7:
                this.btnDel = ((System.Windows.Controls.Button)(target));

            #line 58 "..\..\..\..\Communication\UI\WinCommWritePLC.xaml"
                this.btnDel.Click += new System.Windows.RoutedEventHandler(this.btnDel_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.grid3 = ((System.Windows.Controls.Grid)(target));
                return;

            case 9:
                this.tcAlgorithm = ((MahApps.Metro.Controls.MetroTabControl)(target));
                return;

            case 10:
                this.uCCellDataReference = ((DealAlgorithm.UCCellDataReference)(target));
                return;

            case 11:
                this.dgPLCReg = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 12:
                this.tvSetPLC = ((System.Windows.Controls.TreeView)(target));

            #line 85 "..\..\..\..\Communication\UI\WinCommWritePLC.xaml"
                this.tvSetPLC.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.tvSetPLC_SelectedItemChanged);

            #line default
            #line hidden
                return;

            case 13:
                this.btnSave = ((ControlLib.ButtonColor)(target));

            #line 109 "..\..\..\..\Communication\UI\WinCommWritePLC.xaml"
                this.btnSave.Click += new System.Windows.RoutedEventHandler(this.btnSave_Click);

            #line default
            #line hidden
                return;

            case 14:
                this.btnClose = ((ControlLib.ButtonColor)(target));

            #line 110 "..\..\..\..\Communication\UI\WinCommWritePLC.xaml"
                this.btnClose.Click += new System.Windows.RoutedEventHandler(this.btnClose_Click);

            #line default
            #line hidden
                return;

            case 15:
                this.chkTopMost = ((System.Windows.Controls.CheckBox)(target));

            #line 111 "..\..\..\..\Communication\UI\WinCommWritePLC.xaml"
                this.chkTopMost.Checked += new System.Windows.RoutedEventHandler(this.chkTopMost_Checked);

            #line default
            #line hidden

            #line 111 "..\..\..\..\Communication\UI\WinCommWritePLC.xaml"
                this.chkTopMost.Unchecked += new System.Windows.RoutedEventHandler(this.chkTopMost_Unchecked);

            #line default
            #line hidden
                return;

            case 16:
                this.btnSaveOnly = ((ControlLib.ButtonColor)(target));

            #line 112 "..\..\..\..\Communication\UI\WinCommWritePLC.xaml"
                this.btnSaveOnly.Click += new System.Windows.RoutedEventHandler(this.btnSaveOnly_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #37
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\Main.xaml"
                ((Client.Main)(target)).Closed += new System.EventHandler(this.Window_Closed);

            #line default
            #line hidden
                return;

            case 2:

            #line 10 "..\..\Main.xaml"
                ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Drag);

            #line default
            #line hidden
                return;

            case 3:
                this.BSettings = ((System.Windows.Controls.Button)(target));

            #line 11 "..\..\Main.xaml"
                this.BSettings.Click += new System.Windows.RoutedEventHandler(this.Settings_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.BLogout = ((System.Windows.Controls.Button)(target));

            #line 17 "..\..\Main.xaml"
                this.BLogout.Click += new System.Windows.RoutedEventHandler(this.BLogout_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.BExit = ((System.Windows.Controls.Button)(target));

            #line 23 "..\..\Main.xaml"
                this.BExit.Click += new System.Windows.RoutedEventHandler(this.Exit_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.button = ((System.Windows.Controls.Button)(target));

            #line 29 "..\..\Main.xaml"
                this.button.Click += new System.Windows.RoutedEventHandler(this.button_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.DGProp = ((System.Windows.Controls.DataGrid)(target));

            #line 30 "..\..\Main.xaml"
                this.DGProp.AutoGeneratingColumn += new System.EventHandler <System.Windows.Controls.DataGridAutoGeneratingColumnEventArgs>(this.OnAutoGeneratingColumn);

            #line default
            #line hidden
                return;

            case 8:
                this.BUpdate = ((System.Windows.Controls.Button)(target));

            #line 31 "..\..\Main.xaml"
                this.BUpdate.Click += new System.Windows.RoutedEventHandler(this.BUpdate_Click);

            #line default
            #line hidden
                return;

            case 9:
                this.checkBox = ((System.Windows.Controls.CheckBox)(target));

            #line 37 "..\..\Main.xaml"
                this.checkBox.Checked += new System.Windows.RoutedEventHandler(this.checkBox_Checked);

            #line default
            #line hidden

            #line 37 "..\..\Main.xaml"
                this.checkBox.Unchecked += new System.Windows.RoutedEventHandler(this.checkBox_Checked);

            #line default
            #line hidden
                return;

            case 10:
                this.lmgrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 11:
                this.TreeObjects = ((System.Windows.Controls.TreeView)(target));

            #line 39 "..\..\Main.xaml"
                this.TreeObjects.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.TreeView_SelectedItemChanged);

            #line default
            #line hidden
                return;

            case 12:
                this.label3 = ((System.Windows.Controls.Label)(target));
                return;

            case 13:
                this.stackscroll = ((System.Windows.Controls.ScrollViewer)(target));
                return;

            case 14:
                this.stack = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 15:
                this.label = ((System.Windows.Controls.Label)(target));
                return;

            case 16:
                this.label1 = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #38
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 9 "..\..\MainWindow.xaml"
                ((GDS_SERVER_WPF.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing);

            #line default
            #line hidden

            #line 9 "..\..\MainWindow.xaml"
                ((GDS_SERVER_WPF.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden

            #line 9 "..\..\MainWindow.xaml"
                ((GDS_SERVER_WPF.MainWindow)(target)).KeyUp += new System.Windows.Input.KeyEventHandler(this.Window_KeyUp);

            #line default
            #line hidden
                return;

            case 2:
                this.tabControl = ((System.Windows.Controls.TabControl)(target));
                return;

            case 3:
                this.treeViewMachinesAndTasks = ((System.Windows.Controls.TreeView)(target));

            #line 53 "..\..\MainWindow.xaml"
                this.treeViewMachinesAndTasks.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.treeViewMachinesAndTasks_SelectedItemChanged);

            #line default
            #line hidden
                return;

            case 4:
                this.listViewMachineGroups = ((System.Windows.Controls.ListView)(target));

            #line 70 "..\..\MainWindow.xaml"
                this.listViewMachineGroups.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.listViewMachineGroups_MouseDoubleClick);

            #line default
            #line hidden

            #line 70 "..\..\MainWindow.xaml"
                this.listViewMachineGroups.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.listViewMachineGroups_SelectionChanged);

            #line default
            #line hidden
                return;

            case 5:
                this.menuItemRenameWG = ((System.Windows.Controls.MenuItem)(target));

            #line 73 "..\..\MainWindow.xaml"
                this.menuItemRenameWG.Click += new System.Windows.RoutedEventHandler(this.MenuItemMachineGroupsRename_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.menuItemDeleteWG = ((System.Windows.Controls.MenuItem)(target));

            #line 74 "..\..\MainWindow.xaml"
                this.menuItemDeleteWG.Click += new System.Windows.RoutedEventHandler(this.MenuItemDelete_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.menuItemFeaturesWG = ((System.Windows.Controls.MenuItem)(target));
                return;

            case 8:

            #line 76 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemMachineGroupsWOL_Click);

            #line default
            #line hidden
                return;

            case 9:

            #line 77 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemMachineGroupsRDP_Click);

            #line default
            #line hidden
                return;

            case 10:

            #line 78 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemMachineGroupsConfigureTemplate_Click);

            #line default
            #line hidden
                return;

            case 11:

            #line 80 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemCreateFolder_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.listViewTasks = ((System.Windows.Controls.ListView)(target));

            #line 134 "..\..\MainWindow.xaml"
                this.listViewTasks.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.listViewTasks_MouseDoubleClick);

            #line default
            #line hidden

            #line 134 "..\..\MainWindow.xaml"
                this.listViewTasks.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.listViewTasks_SelectionChanged);

            #line default
            #line hidden
                return;

            case 13:

            #line 137 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemTaskNew_Click);

            #line default
            #line hidden
                return;

            case 14:
                this.menuItemRenameTask = ((System.Windows.Controls.MenuItem)(target));

            #line 138 "..\..\MainWindow.xaml"
                this.menuItemRenameTask.Click += new System.Windows.RoutedEventHandler(this.MenuItemTaskRename_Click);

            #line default
            #line hidden
                return;

            case 15:
                this.menuItemDeleteTask = ((System.Windows.Controls.MenuItem)(target));

            #line 139 "..\..\MainWindow.xaml"
                this.menuItemDeleteTask.Click += new System.Windows.RoutedEventHandler(this.MenuItemDelete_Click);

            #line default
            #line hidden
                return;

            case 16:

            #line 140 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemCreateFolder_Click);

            #line default
            #line hidden
                return;

            case 17:
                this.listViewTasksDetails = ((System.Windows.Controls.ListView)(target));

            #line 194 "..\..\MainWindow.xaml"
                this.listViewTasksDetails.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.listViewTasksDetails_MouseDoubleClick);

            #line default
            #line hidden
                return;

            case 18:
                this.menuItemDeleteDetails = ((System.Windows.Controls.MenuItem)(target));

            #line 197 "..\..\MainWindow.xaml"
                this.menuItemDeleteDetails.Click += new System.Windows.RoutedEventHandler(this.MenuItemDetailsDelete_Click);

            #line default
            #line hidden
                return;

            case 19:
                this.menuItemDeleteDetailsAll = ((System.Windows.Controls.MenuItem)(target));

            #line 198 "..\..\MainWindow.xaml"
                this.menuItemDeleteDetailsAll.Click += new System.Windows.RoutedEventHandler(this.MenuItemDetailsDeleteAll_Click);

            #line default
            #line hidden
                return;

            case 20:
                this.menuItemStopDetails = ((System.Windows.Controls.MenuItem)(target));

            #line 199 "..\..\MainWindow.xaml"
                this.menuItemStopDetails.Click += new System.Windows.RoutedEventHandler(this.MenuItemDetailsStop_Click);

            #line default
            #line hidden
                return;

            case 21:
                this.listViewTaskDetailsProgress = ((System.Windows.Controls.ListView)(target));

            #line 300 "..\..\MainWindow.xaml"
                this.listViewTaskDetailsProgress.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.listViewTaskDetailsProgress_SelectionChanged);

            #line default
            #line hidden
                return;

            case 22:
                this.listViewComputersProgressSelected = ((System.Windows.Controls.ListView)(target));
                return;

            case 23:
                this.listViewComputersProgressAll = ((System.Windows.Controls.ListView)(target));
                return;

            case 24:
                this.labelSelected = ((System.Windows.Controls.Label)(target));
                return;

            case 25:
                this.labelFolderContains = ((System.Windows.Controls.Label)(target));
                return;

            case 26:
                this.labelOnline = ((System.Windows.Controls.Label)(target));
                return;

            case 27:
                this.labelOffilne = ((System.Windows.Controls.Label)(target));
                return;

            case 28:
                this.labelClients = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #39
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                ((SQLiteTest.SubWindows.WinAttorneyIndex)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.memberTree = ((System.Windows.Controls.TreeView)(target));

            #line 19 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.memberTree.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.memberTree_SelectedItemChanged);

            #line default
            #line hidden
                return;

            case 3:
                this.txtblkMemberScope = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 4:
                this.spStatus = ((System.Windows.Controls.WrapPanel)(target));
                return;

            case 5:
                this.txtblkCN = ((System.Windows.Controls.TextBlock)(target));

            #line 43 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkCN.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkCN_MouseDown);

            #line default
            #line hidden
                return;

            case 6:
                this.txtblkForeign = ((System.Windows.Controls.TextBlock)(target));

            #line 45 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkForeign.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkForeign_MouseDown);

            #line default
            #line hidden
                return;

            case 7:
                this.txtblkTodo = ((System.Windows.Controls.TextBlock)(target));

            #line 47 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkTodo.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkTodo_MouseDown);

            #line default
            #line hidden
                return;

            case 8:
                this.txtblkFirstVirsion = ((System.Windows.Controls.TextBlock)(target));

            #line 49 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkFirstVirsion.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkFirstVirsion_MouseDown);

            #line default
            #line hidden
                return;

            case 9:
                this.txtblkAllOA = ((System.Windows.Controls.TextBlock)(target));

            #line 51 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkAllOA.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkAllOA_MouseDown);

            #line default
            #line hidden
                return;

            case 10:
                this.txtblkOAin30 = ((System.Windows.Controls.TextBlock)(target));

            #line 53 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkOAin30.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkOAin30_MouseDown);

            #line default
            #line hidden
                return;

            case 11:
                this.spIndex = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 12:
                this.dpStart = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 13:
                this.dpEnd = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 14:
                this.txtblkNumofHandled = ((System.Windows.Controls.TextBlock)(target));

            #line 70 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkNumofHandled.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkNumofHandled_MouseDown);

            #line default
            #line hidden
                return;

            case 15:
                this.txtblkNumofExceedlimit = ((System.Windows.Controls.TextBlock)(target));

            #line 74 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkNumofExceedlimit.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkNumofExceedlimit_MouseDown);

            #line default
            #line hidden
                return;

            case 16:
                this.txtblkDaysofExceedlimit = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 17:
                this.txtblkNumofExceedOutsidelimit = ((System.Windows.Controls.TextBlock)(target));

            #line 82 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkNumofExceedOutsidelimit.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkNumofExceedOutsidelimit_MouseDown);

            #line default
            #line hidden
                return;

            case 18:
                this.txtblkDaysofExceedOutsidelimit = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 19:
                this.txtblkFirstVirsionWeight = ((System.Windows.Controls.TextBlock)(target));

            #line 90 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkFirstVirsionWeight.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkFirstVirsionWeight_MouseDown);

            #line default
            #line hidden
                return;

            case 20:
                this.txtblkDoneWeight = ((System.Windows.Controls.TextBlock)(target));

            #line 92 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkDoneWeight.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkDoneWeight_MouseDown);

            #line default
            #line hidden
                return;

            case 21:
                this.txtblkNumofDoneOA = ((System.Windows.Controls.TextBlock)(target));

            #line 95 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkNumofDoneOA.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkNumofDoneOA_MouseDown);

            #line default
            #line hidden
                return;

            case 22:
                this.tb1 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 23:
                this.txtblkCheckWeight = ((System.Windows.Controls.TextBlock)(target));

            #line 101 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkCheckWeight.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkCheckWeight_MouseDown);

            #line default
            #line hidden
                return;

            case 24:
                this.txtblkCheckNewWeight = ((System.Windows.Controls.TextBlock)(target));

            #line 103 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkCheckNewWeight.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkCheckNewWeight_MouseDown);

            #line default
            #line hidden
                return;

            case 25:
                this.txtblkNormalCheckWeight = ((System.Windows.Controls.TextBlock)(target));

            #line 105 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkNormalCheckWeight.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkNormalCheckWeight_MouseDown);

            #line default
            #line hidden
                return;

            case 26:
                this.txtblkNumofEntrusted = ((System.Windows.Controls.TextBlock)(target));

            #line 110 "..\..\..\SubWindows\WinAttorneyIndex.xaml"
                this.txtblkNumofEntrusted.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.txtblkNumofEntrusted_MouseDown);

            #line default
            #line hidden
                return;

            case 27:
                this.dgDetail = ((System.Windows.Controls.DataGrid)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #40
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.treeViewYaxis = ((System.Windows.Controls.TreeView)(target));

            #line 8 "..\..\..\MainWindow.xaml"
                this.treeViewYaxis.Loaded += new System.Windows.RoutedEventHandler(this.treeViewYaxis_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.treeViewXaxis = ((System.Windows.Controls.TreeView)(target));

            #line 9 "..\..\..\MainWindow.xaml"
                this.treeViewXaxis.Loaded += new System.Windows.RoutedEventHandler(this.treeViewXaxis_Loaded);

            #line default
            #line hidden
                return;

            case 3:
                this.treeViewCommonaxis = ((System.Windows.Controls.TreeView)(target));

            #line 10 "..\..\..\MainWindow.xaml"
                this.treeViewCommonaxis.Loaded += new System.Windows.RoutedEventHandler(this.treeViewCommonaxis_Loaded);

            #line default
            #line hidden
                return;

            case 4:
                this.MySlider = ((System.Windows.Controls.Slider)(target));

            #line 11 "..\..\..\MainWindow.xaml"
                this.MySlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.MySlider_ValueChanged);

            #line default
            #line hidden
                return;

            case 5:
                this.Wave1 = ((System.Windows.Controls.Label)(target));
                return;

            case 6:
                this.Wave2 = ((System.Windows.Controls.Label)(target));
                return;

            case 7:
                this.dsandesari = ((System.Windows.Controls.Label)(target));
                return;

            case 8:
                this.Title = ((System.Windows.Controls.Label)(target));
                return;

            case 9:
                this.DrawGraph = ((System.Windows.Controls.Button)(target));

            #line 18 "..\..\..\MainWindow.xaml"
                this.DrawGraph.Click += new System.Windows.RoutedEventHandler(this.DrawGraph_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.chartArea = ((System.Windows.Controls.Canvas)(target));
                return;

            case 11:
                this.label1 = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
 private void CollapseAllNodes_Executed(object sender, ExecutedRoutedEventArgs e)
 {
     System.Windows.Controls.TreeView TreeNode = sender as System.Windows.Controls.TreeView;
     CollapseOrExpandAllNodes((TreeNode.Items[0] as ModuleTreeViewItem), false);
 }
Пример #42
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.FilePickerTopLevel = ((TraceLab.UI.WPF.Views.FilePickerDialog)(target));

            #line 33 "..\..\..\Views\FilePickerDialog.xaml"
                this.FilePickerTopLevel.Loaded += new System.Windows.RoutedEventHandler(this.FilePickerLoaded);

            #line default
            #line hidden
                return;

            case 2:
                this.DiskExpander = ((System.Windows.Controls.Expander)(target));

            #line 88 "..\..\..\Views\FilePickerDialog.xaml"
                this.DiskExpander.Expanded += new System.Windows.RoutedEventHandler(this.DiskExpander_Expanded);

            #line default
            #line hidden

            #line 88 "..\..\..\Views\FilePickerDialog.xaml"
                this.DiskExpander.Collapsed += new System.Windows.RoutedEventHandler(this.DiskExpander_Collapsed);

            #line default
            #line hidden
                return;

            case 3:

            #line 90 "..\..\..\Views\FilePickerDialog.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BrowseButtonClick);

            #line default
            #line hidden
                return;

            case 4:
                this.PathTextBox = ((System.Windows.Controls.TextBox)(target));

            #line 93 "..\..\..\Views\FilePickerDialog.xaml"
                this.PathTextBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBox_TextChanged);

            #line default
            #line hidden
                return;

            case 5:
                this.PackageExpander = ((System.Windows.Controls.Expander)(target));

            #line 98 "..\..\..\Views\FilePickerDialog.xaml"
                this.PackageExpander.Expanded += new System.Windows.RoutedEventHandler(this.PackageExpander_Expanded);

            #line default
            #line hidden

            #line 98 "..\..\..\Views\FilePickerDialog.xaml"
                this.PackageExpander.Collapsed += new System.Windows.RoutedEventHandler(this.PackageExpander_Collapsed);

            #line default
            #line hidden
                return;

            case 6:
                this.PackageFileChooser = ((System.Windows.Controls.TreeView)(target));

            #line 99 "..\..\..\Views\FilePickerDialog.xaml"
                this.PackageFileChooser.IsVisibleChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.TreeView_IsVisibleChanged);

            #line default
            #line hidden

            #line 100 "..\..\..\Views\FilePickerDialog.xaml"
                this.PackageFileChooser.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.PkgFileChooser_SelectedItemChanged);

            #line default
            #line hidden
                return;

            case 7:
                this.ReferencesBinding = ((System.Windows.Data.Binding)(target));
                return;

            case 8:
                this.SelectButton = ((System.Windows.Controls.Button)(target));

            #line 115 "..\..\..\Views\FilePickerDialog.xaml"
                this.SelectButton.Click += new System.Windows.RoutedEventHandler(this.SelectClick);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #43
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this._treeView = ((System.Windows.Controls.TreeView)(target));
                return;

            case 3:
                this.lvlist = ((System.Windows.Controls.ListView)(target));
                return;

            case 6:
                this.btnCreate = ((System.Windows.Controls.Button)(target));

            #line 131 "..\..\..\Manager\UcUserManager.xaml"
                this.btnCreate.Click += new System.Windows.RoutedEventHandler(this.btnCreate_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.user_details = ((System.Windows.Controls.Grid)(target));
                return;

            case 8:
                this._department = ((System.Windows.Controls.ComboBox)(target));

            #line 168 "..\..\..\Manager\UcUserManager.xaml"
                this._department.GotFocus += new System.Windows.RoutedEventHandler(this.FrameworkElement_GotFocus);

            #line default
            #line hidden
                return;

            case 9:
                this._cmbRoleType = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 10:
                this._role_flag = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 11:
                this._subDetails = ((System.Windows.Controls.TextBox)(target));
                return;

            case 12:
                this._loginName = ((System.Windows.Controls.TextBox)(target));

            #line 187 "..\..\..\Manager\UcUserManager.xaml"
                this._loginName.GotFocus += new System.Windows.RoutedEventHandler(this.FrameworkElement_GotFocus);

            #line default
            #line hidden

            #line 187 "..\..\..\Manager\UcUserManager.xaml"
                this._loginName.AddHandler(System.Windows.DataObject.PastingEvent, new System.Windows.DataObjectPastingEventHandler(this.loginName_Pasting));

            #line default
            #line hidden

            #line 187 "..\..\..\Manager\UcUserManager.xaml"
                this._loginName.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.loginName_PreviewKeyDown);

            #line default
            #line hidden
                return;

            case 13:
                this._user_flag = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 14:
                this._loginPassword = ((System.Windows.Controls.PasswordBox)(target));

            #line 194 "..\..\..\Manager\UcUserManager.xaml"
                this._loginPassword.GotFocus += new System.Windows.RoutedEventHandler(this.FrameworkElement_GotFocus);

            #line default
            #line hidden
                return;

            case 15:
                this._password_flag = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 16:
                this.txtUserName = ((System.Windows.Controls.TextBox)(target));

            #line 201 "..\..\..\Manager\UcUserManager.xaml"
                this.txtUserName.GotFocus += new System.Windows.RoutedEventHandler(this.FrameworkElement_GotFocus);

            #line default
            #line hidden
                return;

            case 17:
                this._name_flag = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 18:
                this._user_manger = ((System.Windows.Controls.CheckBox)(target));

            #line 209 "..\..\..\Manager\UcUserManager.xaml"
                this._user_manger.Checked += new System.Windows.RoutedEventHandler(this._user_manger_Checked);

            #line default
            #line hidden
                return;

            case 19:
                this._user_manger_2 = ((System.Windows.Controls.CheckBox)(target));

            #line 210 "..\..\..\Manager\UcUserManager.xaml"
                this._user_manger_2.Checked += new System.Windows.RoutedEventHandler(this._user_manger_Checked);

            #line default
            #line hidden
                return;

            case 20:
                this._manager_flag = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 21:
                this.btnSave = ((System.Windows.Controls.Button)(target));

            #line 218 "..\..\..\Manager\UcUserManager.xaml"
                this.btnSave.Click += new System.Windows.RoutedEventHandler(this.btnSave_Click);

            #line default
            #line hidden
                return;

            case 22:
                this.btnCancel = ((System.Windows.Controls.Button)(target));

            #line 219 "..\..\..\Manager\UcUserManager.xaml"
                this.btnCancel.Click += new System.Windows.RoutedEventHandler(this.Clear_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #44
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 50 "..\..\..\View\MainWindowView.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.OnCreateNewVariableClick);

            #line default
            #line hidden
                return;

            case 2:

            #line 51 "..\..\..\View\MainWindowView.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.OnCreateRuleBlockClick);

            #line default
            #line hidden
                return;

            case 3:
                this.canvas_drawing = ((System.Windows.Controls.Canvas)(target));

            #line 75 "..\..\..\View\MainWindowView.xaml"
                this.canvas_drawing.MouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.canvas_drawing_MouseRightButtonDown);

            #line default
            #line hidden
                return;

            case 4:

            #line 79 "..\..\..\View\MainWindowView.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.OnCreateNewVariableClick);

            #line default
            #line hidden
                return;

            case 5:

            #line 80 "..\..\..\View\MainWindowView.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.OnCreateRuleBlockClick);

            #line default
            #line hidden
                return;

            case 6:

            #line 81 "..\..\..\View\MainWindowView.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.OnCreateTextBlockClick);

            #line default
            #line hidden
                return;

            case 7:
                this.treeView = ((System.Windows.Controls.TreeView)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.txtSearch = ((System.Windows.Controls.TextBox)(target));
                return;

            case 2:
                this.btnSearch = ((System.Windows.Controls.Button)(target));

            #line 46 "..\..\..\..\Detect\副本 DatabaseTree.xaml"
                this.btnSearch.Click += new System.Windows.RoutedEventHandler(this.btnSearch_Click);

            #line default
            #line hidden
                return;

            case 3:
                this.btnTreeExpand = ((System.Windows.Controls.Button)(target));

            #line 49 "..\..\..\..\Detect\副本 DatabaseTree.xaml"
                this.btnTreeExpand.Click += new System.Windows.RoutedEventHandler(this.btnTreeExpand_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.btnTreeClose = ((System.Windows.Controls.Button)(target));

            #line 52 "..\..\..\..\Detect\副本 DatabaseTree.xaml"
                this.btnTreeClose.Click += new System.Windows.RoutedEventHandler(this.btnTreeClose_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.btnLoadDatabase = ((System.Windows.Controls.Button)(target));

            #line 55 "..\..\..\..\Detect\副本 DatabaseTree.xaml"
                this.btnLoadDatabase.Click += new System.Windows.RoutedEventHandler(this.btnLoadDatabase_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.treeDatabase = ((System.Windows.Controls.TreeView)(target));

            #line 59 "..\..\..\..\Detect\副本 DatabaseTree.xaml"
                this.treeDatabase.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.treeDatabase_SelectedItemChanged);

            #line default
            #line hidden
                return;

            case 7:
                this.gridBrowseMethod = ((System.Windows.Controls.Grid)(target));
                return;

            case 8:
                this.txtMethodName = ((System.Windows.Controls.TextBox)(target));

            #line 71 "..\..\..\..\Detect\副本 DatabaseTree.xaml"
                this.txtMethodName.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txtMethodName_TextChanged);

            #line default
            #line hidden
                return;

            case 9:
                this.btnBrowse = ((System.Windows.Controls.Button)(target));

            #line 72 "..\..\..\..\Detect\副本 DatabaseTree.xaml"
                this.btnBrowse.Click += new System.Windows.RoutedEventHandler(this.btnBrowse_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.panelScanParameter = ((RFDI.SystemSetup.ScanParameterEditor)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #46
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.busyIndo = ((Xceed.Wpf.Toolkit.BusyIndicator)(target));
                return;

            case 2:
                this.SearchBox_Unique_id = ((System.Windows.Controls.TextBox)(target));

            #line 35 "..\..\GiveProducts.xaml"
                this.SearchBox_Unique_id.KeyUp += new System.Windows.Input.KeyEventHandler(this.TextBox_KeyUp);

            #line default
            #line hidden
                return;

            case 3:
                this.SearchBox_Title = ((System.Windows.Controls.TextBox)(target));

            #line 41 "..\..\GiveProducts.xaml"
                this.SearchBox_Title.KeyUp += new System.Windows.Input.KeyEventHandler(this.TextBox_KeyUp);

            #line default
            #line hidden
                return;

            case 4:
                this.SearchBox_Description = ((System.Windows.Controls.TextBox)(target));

            #line 47 "..\..\GiveProducts.xaml"
                this.SearchBox_Description.KeyUp += new System.Windows.Input.KeyEventHandler(this.TextBox_KeyUp);

            #line default
            #line hidden
                return;

            case 5:
                this.Textcategory_id = ((Xceed.Wpf.Toolkit.DropDownButton)(target));
                return;

            case 6:
                this.treeView = ((System.Windows.Controls.TreeView)(target));

            #line 56 "..\..\GiveProducts.xaml"
                this.treeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.treeView_MouseDoubleClick);

            #line default
            #line hidden

            #line 56 "..\..\GiveProducts.xaml"
                this.treeView.KeyDown += new System.Windows.Input.KeyEventHandler(this.treeView_KeyDown);

            #line default
            #line hidden
                return;

            case 7:
                this.SearchBox_Color = ((System.Windows.Controls.ComboBox)(target));

            #line 77 "..\..\GiveProducts.xaml"
                this.SearchBox_Color.DropDownClosed += new System.EventHandler(this.SearchBox_Model_DropDownClosed);

            #line default
            #line hidden
                return;

            case 8:
                this.PanelPrice = ((System.Windows.Controls.WrapPanel)(target));
                return;

            case 9:
                this.LabelMinPrice = ((System.Windows.Controls.Label)(target));
                return;

            case 10:
                this.RangeCarPrice = ((Xceed.Wpf.Toolkit.RangeSlider)(target));

            #line 87 "..\..\GiveProducts.xaml"
                this.RangeCarPrice.LowerValueChanged += new System.Windows.RoutedEventHandler(this.RangeCarPrice_LowerValueChanged);

            #line default
            #line hidden

            #line 87 "..\..\GiveProducts.xaml"
                this.RangeCarPrice.HigherValueChanged += new System.Windows.RoutedEventHandler(this.RangeCarPrice_HigherValueChanged);

            #line default
            #line hidden
                return;

            case 11:
                this.LabelMaxPrice = ((System.Windows.Controls.Label)(target));
                return;

            case 12:
                this.PanelAmount = ((System.Windows.Controls.WrapPanel)(target));
                return;

            case 13:
                this.LabelMinAmount = ((System.Windows.Controls.Label)(target));
                return;

            case 14:
                this.RangeCarAmount = ((Xceed.Wpf.Toolkit.RangeSlider)(target));

            #line 96 "..\..\GiveProducts.xaml"
                this.RangeCarAmount.LowerValueChanged += new System.Windows.RoutedEventHandler(this.RangeCarAmount_LowerValueChanged);

            #line default
            #line hidden

            #line 96 "..\..\GiveProducts.xaml"
                this.RangeCarAmount.HigherValueChanged += new System.Windows.RoutedEventHandler(this.RangeCarAmount_HigherValueChanged);

            #line default
            #line hidden
                return;

            case 15:
                this.LabelMaxAmount = ((System.Windows.Controls.Label)(target));
                return;

            case 16:
                this.SearchBox_Make = ((System.Windows.Controls.ComboBox)(target));

            #line 113 "..\..\GiveProducts.xaml"
                this.SearchBox_Make.DropDownClosed += new System.EventHandler(this.SearchBox_Make_DropDownClosed);

            #line default
            #line hidden
                return;

            case 17:
                this.SearchBox_Model = ((System.Windows.Controls.ComboBox)(target));

            #line 131 "..\..\GiveProducts.xaml"
                this.SearchBox_Model.DropDownClosed += new System.EventHandler(this.SearchBox_Model_DropDownClosed);

            #line default
            #line hidden
                return;

            case 18:
                this.CheckboxCar = ((System.Windows.Controls.CheckBox)(target));

            #line 136 "..\..\GiveProducts.xaml"
                this.CheckboxCar.Checked += new System.Windows.RoutedEventHandler(this.CheckboxCar_Checked_change);

            #line default
            #line hidden

            #line 136 "..\..\GiveProducts.xaml"
                this.CheckboxCar.Unchecked += new System.Windows.RoutedEventHandler(this.CheckboxCar_Unchecked);

            #line default
            #line hidden
                return;

            case 19:
                this.DataGrid_1 = ((Xceed.Wpf.DataGrid.DataGridControl)(target));

            #line 141 "..\..\GiveProducts.xaml"
                this.DataGrid_1.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.DataGrid_1_MouseDoubleClick);

            #line default
            #line hidden

            #line 141 "..\..\GiveProducts.xaml"
                this.DataGrid_1.MouseEnter += new System.Windows.Input.MouseEventHandler(this.DataGrid_1_MouseEnter);

            #line default
            #line hidden
                return;

            case 20:

            #line 159 "..\..\GiveProducts.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Delete_Click);

            #line default
            #line hidden
                return;

            case 21:

            #line 160 "..\..\GiveProducts.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Update_Click);

            #line default
            #line hidden
                return;

            case 22:

            #line 161 "..\..\GiveProducts.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);

            #line default
            #line hidden
                return;

            case 23:
                this.checkBoxPhoto = ((System.Windows.Controls.CheckBox)(target));

            #line 162 "..\..\GiveProducts.xaml"
                this.checkBoxPhoto.Checked += new System.Windows.RoutedEventHandler(this.CheckBox_Checked);

            #line default
            #line hidden

            #line 162 "..\..\GiveProducts.xaml"
                this.checkBoxPhoto.Unchecked += new System.Windows.RoutedEventHandler(this.CheckBox_Unchecked);

            #line default
            #line hidden
                return;

            case 24:
                this.UpdateItemWindow = ((Xceed.Wpf.Toolkit.ChildWindow)(target));
                return;

            case 25:
                this.LocalTest = ((ShopManager.UpdateProduct)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #47
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\BrowseImages.xaml"
                ((GDS_SERVER_WPF.BrowseImages)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden

            #line 8 "..\..\BrowseImages.xaml"
                ((GDS_SERVER_WPF.BrowseImages)(target)).KeyUp += new System.Windows.Input.KeyEventHandler(this.Window_KeyUp);

            #line default
            #line hidden
                return;

            case 2:
                this.treeView = ((System.Windows.Controls.TreeView)(target));

            #line 19 "..\..\BrowseImages.xaml"
                this.treeView.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.treeView_SelectedItemChanged);

            #line default
            #line hidden
                return;

            case 3:
                this.listView = ((System.Windows.Controls.ListView)(target));

            #line 35 "..\..\BrowseImages.xaml"
                this.listView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.listView_MouseDoubleClick);

            #line default
            #line hidden
                return;

            case 4:
                this.button_OK = ((System.Windows.Controls.Button)(target));

            #line 51 "..\..\BrowseImages.xaml"
                this.button_OK.Click += new System.Windows.RoutedEventHandler(this.button_OK_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.button_Edit = ((System.Windows.Controls.Button)(target));

            #line 52 "..\..\BrowseImages.xaml"
                this.button_Edit.Click += new System.Windows.RoutedEventHandler(this.button_Edit_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.button_New = ((System.Windows.Controls.Button)(target));

            #line 53 "..\..\BrowseImages.xaml"
                this.button_New.Click += new System.Windows.RoutedEventHandler(this.button_New_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.button_New_Folder = ((System.Windows.Controls.Button)(target));

            #line 54 "..\..\BrowseImages.xaml"
                this.button_New_Folder.Click += new System.Windows.RoutedEventHandler(this.button_New_Folder_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.button_Cancel = ((System.Windows.Controls.Button)(target));

            #line 55 "..\..\BrowseImages.xaml"
                this.button_Cancel.Click += new System.Windows.RoutedEventHandler(this.button_Cancel_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #48
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.txtSearch = ((FoodSafetyMonitoring.Manager.UserControls.TextboxSearchControl)(target));
                return;

            case 2:
                this._treeView = ((System.Windows.Controls.TreeView)(target));
                return;

            case 4:
                this._detail_info_all = ((System.Windows.Controls.Grid)(target));
                return;

            case 5:
                this._add = ((System.Windows.Controls.Button)(target));

            #line 80 "..\..\..\Manager\SysDeptManager.xaml"
                this._add.Click += new System.Windows.RoutedEventHandler(this._add_Click);

            #line default
            #line hidden
                return;

            case 6:
                this._delete = ((System.Windows.Controls.Button)(target));

            #line 81 "..\..\..\Manager\SysDeptManager.xaml"
                this._delete.Click += new System.Windows.RoutedEventHandler(this._delete_Click);

            #line default
            #line hidden
                return;

            case 7:
                this._edit = ((System.Windows.Controls.Button)(target));

            #line 82 "..\..\..\Manager\SysDeptManager.xaml"
                this._edit.Click += new System.Windows.RoutedEventHandler(this._edit_Click);

            #line default
            #line hidden
                return;

            case 8:
                this._detail_info = ((System.Windows.Controls.Grid)(target));
                return;

            case 9:
                this._regional_level = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 10:
                this._belong_to = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 11:
                this._lower_area = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 12:
                this._superior_department = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 13:
                this._station = ((System.Windows.Controls.TextBox)(target));
                return;

            case 14:
                this._station_property = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 15:
                this._direct_station = ((System.Windows.Controls.CheckBox)(target));

            #line 121 "..\..\..\Manager\SysDeptManager.xaml"
                this._direct_station.Checked += new System.Windows.RoutedEventHandler(this._detect_method1_Checked);

            #line default
            #line hidden
                return;

            case 16:
                this._direct_station_2 = ((System.Windows.Controls.CheckBox)(target));

            #line 122 "..\..\..\Manager\SysDeptManager.xaml"
                this._direct_station_2.Checked += new System.Windows.RoutedEventHandler(this._detect_method1_Checked);

            #line default
            #line hidden
                return;

            case 17:
                this._cultivate_station = ((System.Windows.Controls.CheckBox)(target));

            #line 123 "..\..\..\Manager\SysDeptManager.xaml"
                this._cultivate_station.Checked += new System.Windows.RoutedEventHandler(this._detect_method1_Checked);

            #line default
            #line hidden
                return;

            case 18:
                this._slaughter_station = ((System.Windows.Controls.CheckBox)(target));

            #line 124 "..\..\..\Manager\SysDeptManager.xaml"
                this._slaughter_station.Checked += new System.Windows.RoutedEventHandler(this._detect_method1_Checked);

            #line default
            #line hidden
                return;

            case 19:
                this._principal_name = ((System.Windows.Controls.TextBox)(target));
                return;

            case 20:
                this._phone = ((System.Windows.Controls.TextBox)(target));
                return;

            case 21:
                this._contact_number = ((System.Windows.Controls.TextBox)(target));
                return;

            case 22:
                this._address = ((System.Windows.Controls.TextBox)(target));
                return;

            case 23:
                this._note = ((System.Windows.Controls.TextBox)(target));
                return;

            case 24:
                this.txtMsg = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 25:
                this.btnSave = ((System.Windows.Controls.Button)(target));

            #line 162 "..\..\..\Manager\SysDeptManager.xaml"
                this.btnSave.Click += new System.Windows.RoutedEventHandler(this.btnSave_Click);

            #line default
            #line hidden
                return;

            case 26:
                this.btnCancel = ((System.Windows.Controls.Button)(target));

            #line 163 "..\..\..\Manager\SysDeptManager.xaml"
                this.btnCancel.Click += new System.Windows.RoutedEventHandler(this.Clear_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #49
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.TreeViewMenu = ((System.Windows.Controls.TreeView)(target));
                return;

            case 2:
                this.TreeViewControlRooms = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 3:
                this.TreeViewConditionRooms = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 4:
                this.TreeViewEmploymentRooms = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 5:
                this.TreeViewAllRooms = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 6:
                this.TreeViewReservationRooms = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 7:
                this.TreeViewNewReservation = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 8:
                this.TreeViewSearchReservation = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 9:
                this.TreeViewTariffs = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 10:
                this.TreeViewClientProfile = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 11:
                this.TreeViewAddNewClient = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 12:
                this.TreeViewSearchClient = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 13:
                this.TreeViewAllClients = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 14:
                this.TreeViewReport = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 15:
                this.dataGridClient = ((System.Windows.Controls.DataGrid)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #50
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.mainForm = ((GloryView.RFID.MainForm)(target));
                return;

            case 2:
                this.perentGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 3:
                this.home = ((GloryView.RFID.Controls.DazzleTabItem)(target));
                return;

            case 4:
                this.login = ((System.Windows.Controls.Grid)(target));
                return;

            case 5:
                this.exit = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 6:
                this.Details = ((System.Windows.Documents.Hyperlink)(target));

            #line 223 "..\..\..\MainForm.xaml"
                this.Details.Click += new System.Windows.RoutedEventHandler(this.exitSystem);

            #line default
            #line hidden
                return;

            case 7:
                this.grid1 = ((System.Windows.Controls.Grid)(target));
                return;

            case 8:
                this.wellcome = ((System.Windows.Controls.Label)(target));
                return;

            case 9:
                this.label2 = ((System.Windows.Controls.Label)(target));
                return;

            case 10:
                this.loginTime = ((System.Windows.Controls.Label)(target));
                return;

            case 11:
                this.textBlock3 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 12:

            #line 234 "..\..\..\MainForm.xaml"
                ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.Change_Password);

            #line default
            #line hidden
                return;

            case 13:
                this.User_Manager = ((GloryView.RFID.Controls.DazzleTabItem)(target));
                return;

            case 14:
                this.showGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 15:
                this.gridList = ((System.Windows.Controls.Grid)(target));
                return;

            case 16:
                this.menu1 = ((System.Windows.Controls.Menu)(target));
                return;

            case 17:
                this.users = ((System.Windows.Controls.MenuItem)(target));

            #line 271 "..\..\..\MainForm.xaml"
                this.users.Click += new System.Windows.RoutedEventHandler(this.userManager);

            #line default
            #line hidden
                return;

            case 18:
                this.border1 = ((System.Windows.Controls.Border)(target));
                return;

            case 19:
                this.border2 = ((System.Windows.Controls.Border)(target));
                return;

            case 20:
                this.equipmentInfo = ((GloryView.RFID.Controls.DazzleTabItem)(target));
                return;

            case 21:
                this.roomGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 22:

            #line 325 "..\..\..\MainForm.xaml"
                ((System.Windows.Controls.TreeView)(target)).SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.SelectRoom);

            #line default
            #line hidden
                return;

            case 23:
                this.rooms = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 24:
                this.RoomScene = ((GloryView.RFID.Controls.DazzleTabItem)(target));
                return;

            case 25:
                this.roomgrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 26:
                this.System_Manager = ((GloryView.RFID.Controls.DazzleTabItem)(target));
                return;

            case 27:
                this.listBox4 = ((System.Windows.Controls.ListBox)(target));
                return;

            case 28:
                this.treeView11 = ((System.Windows.Controls.TreeView)(target));

            #line 413 "..\..\..\MainForm.xaml"
                this.treeView11.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.System_set);

            #line default
            #line hidden
                return;

            case 29:
                this.systemGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 30:
                this.Equipment_Manager = ((GloryView.RFID.Controls.DazzleTabItem)(target));
                return;

            case 31:
                this.moveGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 32:

            #line 452 "..\..\..\MainForm.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Device_Incoming);

            #line default
            #line hidden
                return;

            case 33:

            #line 453 "..\..\..\MainForm.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Device_Out);

            #line default
            #line hidden
                return;

            case 34:

            #line 454 "..\..\..\MainForm.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Device_Move);

            #line default
            #line hidden
                return;

            case 35:

            #line 455 "..\..\..\MainForm.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Device_Repair);

            #line default
            #line hidden
                return;

            case 36:

            #line 456 "..\..\..\MainForm.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Device_Mains);

            #line default
            #line hidden
                return;

            case 37:
                this.EquipmentAram = ((GloryView.RFID.Controls.DazzleTabItem)(target));
                return;

            case 38:
                this.listBox6 = ((System.Windows.Controls.ListBox)(target));
                return;

            case 39:

            #line 483 "..\..\..\MainForm.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Arning);

            #line default
            #line hidden
                return;

            case 40:

            #line 484 "..\..\..\MainForm.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Alarm_History);

            #line default
            #line hidden
                return;

            case 41:
                this.saveDevice = ((System.Windows.Controls.Grid)(target));
                return;

            case 42:
                this.saomiao = ((GloryView.RFID.Controls.DazzleTabItem)(target));
                return;

            case 43:
                this.label5 = ((System.Windows.Controls.Label)(target));
                return;

            case 44:
                this.button1 = ((System.Windows.Controls.Button)(target));
                return;

            case 45:
                this.button2 = ((System.Windows.Controls.Button)(target));
                return;

            case 46:
                this.button3 = ((System.Windows.Controls.Button)(target));
                return;

            case 47:
                this.label6 = ((System.Windows.Controls.Label)(target));
                return;

            case 48:
                this.textBlock1 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 49:
                this.label7 = ((System.Windows.Controls.Label)(target));
                return;

            case 50:
                this.textBlock2 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 51:
                this.label8 = ((System.Windows.Controls.Label)(target));
                return;

            case 52:
                this.comboBox1 = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 53:
                this.move = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #51
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.btn_ende = ((System.Windows.Controls.Button)(target));

            #line 11 "..\..\MainWindow.xaml"
                this.btn_ende.Click += new System.Windows.RoutedEventHandler(this.Btn_ende_Click);

            #line default
            #line hidden
                return;

            case 2:
                this.btn_rechne = ((System.Windows.Controls.Button)(target));
                return;

            case 3:
                this.trv_Auswahl = ((System.Windows.Controls.TreeView)(target));
                return;

            case 4:
                this.trv_eckigekoerper = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 5:
                this.trv_rechteck = ((System.Windows.Controls.TreeViewItem)(target));

            #line 15 "..\..\MainWindow.xaml"
                this.trv_rechteck.Selected += new System.Windows.RoutedEventHandler(this.trv_rechteck_Selected);

            #line default
            #line hidden
                return;

            case 6:
                this.trv_rundekoerper = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 7:
                this.trv_kreis = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 8:
                this.grid_Rechteck = ((System.Windows.Controls.Grid)(target));
                return;

            case 9:
                this.lbl_breiterechteck = ((System.Windows.Controls.Label)(target));
                return;

            case 10:
                this.txb_breiterechteck = ((System.Windows.Controls.TextBox)(target));

            #line 24 "..\..\MainWindow.xaml"
                this.txb_breiterechteck.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.Txb_breiterechteck_TextChanged);

            #line default
            #line hidden

            #line 24 "..\..\MainWindow.xaml"
                this.txb_breiterechteck.LostFocus += new System.Windows.RoutedEventHandler(this.TextBox_LostFocus);

            #line default
            #line hidden

            #line 24 "..\..\MainWindow.xaml"
                this.txb_breiterechteck.GotFocus += new System.Windows.RoutedEventHandler(this.Txb_breiterechteck_GotFocus);

            #line default
            #line hidden
                return;

            case 11:
                this.lbl_hoeherechteck = ((System.Windows.Controls.Label)(target));
                return;

            case 12:
                this.txb_hoeherechteck = ((System.Windows.Controls.TextBox)(target));

            #line 26 "..\..\MainWindow.xaml"
                this.txb_hoeherechteck.LostFocus += new System.Windows.RoutedEventHandler(this.TextBox_LostFocus);

            #line default
            #line hidden

            #line 26 "..\..\MainWindow.xaml"
                this.txb_hoeherechteck.GotFocus += new System.Windows.RoutedEventHandler(this.Txb_breiterechteck_GotFocus);

            #line default
            #line hidden
                return;

            case 13:
                this.img_rechteck = ((System.Windows.Controls.Image)(target));
                return;

            case 14:
                this.lbl_dickerechteck = ((System.Windows.Controls.Label)(target));
                return;

            case 15:
                this.txb_dickerechteck = ((System.Windows.Controls.TextBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #52
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.MyTreeEdit = ((BehaviorTreeEditor.TreeEdit)(target));
                return;

            case 2:
                this.TreeNameLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 3:
                this.BTTree = ((System.Windows.Controls.TreeView)(target));

            #line 33 "..\..\TreeEdit.xaml"
                this.BTTree.DragEnter += new System.Windows.DragEventHandler(this.BTTree_DragEnter);

            #line default
            #line hidden

            #line 34 "..\..\TreeEdit.xaml"
                this.BTTree.DragOver += new System.Windows.DragEventHandler(this.BTTree_DragOver);

            #line default
            #line hidden

            #line 35 "..\..\TreeEdit.xaml"
                this.BTTree.DragLeave += new System.Windows.DragEventHandler(this.BTTree_DragLeave);

            #line default
            #line hidden

            #line 36 "..\..\TreeEdit.xaml"
                this.BTTree.Drop += new System.Windows.DragEventHandler(this.BTTree_Drop);

            #line default
            #line hidden

            #line 37 "..\..\TreeEdit.xaml"
                this.BTTree.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.BTTree_PreviewKeyDown);

            #line default
            #line hidden
                return;

            case 4:
                this.BTNodes = ((System.Windows.Controls.ListBox)(target));

            #line 81 "..\..\TreeEdit.xaml"
                this.BTNodes.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.BTNodes_PreviewMouseMove);

            #line default
            #line hidden

            #line 82 "..\..\TreeEdit.xaml"
                this.BTNodes.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.BTNodes_PreviewMouseLeftButtonUp);

            #line default
            #line hidden

            #line 83 "..\..\TreeEdit.xaml"
                this.BTNodes.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.BTNodes_SelectionChanged);

            #line default
            #line hidden

            #line 84 "..\..\TreeEdit.xaml"
                this.BTNodes.Loaded += new System.Windows.RoutedEventHandler(this.BTNodes_Loaded);

            #line default
            #line hidden
                return;

            case 5:
                this.OutputMessage = ((System.Windows.Controls.ListBox)(target));

            #line 119 "..\..\TreeEdit.xaml"
                this.OutputMessage.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.OutputMessage_SelectionChanged);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #53
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.UserControl = ((ShopManager.UpdateProduct)(target));

            #line 11 "..\..\UpdateProduct.xaml"
                this.UserControl.Loaded += new System.Windows.RoutedEventHandler(this.UserControl_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.busyIndo = ((Xceed.Wpf.Toolkit.BusyIndicator)(target));
                return;

            case 3:
                this.TextUnique_id_Child_Secondary = ((System.Windows.Controls.TextBox)(target));
                return;

            case 4:
                this.TextUnique_id_Child_Primary = ((System.Windows.Controls.ComboBox)(target));

            #line 49 "..\..\UpdateProduct.xaml"
                this.TextUnique_id_Child_Primary.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.TextUnique_id_Child_Primary_SelectionChanged);

            #line default
            #line hidden
                return;

            case 5:
                this.TextUnique_id_Parent = ((System.Windows.Controls.TextBox)(target));
                return;

            case 6:
                this.TextTitle = ((System.Windows.Controls.TextBox)(target));
                return;

            case 7:
                this.Textcategory_id = ((Xceed.Wpf.Toolkit.DropDownButton)(target));
                return;

            case 8:
                this.treeView = ((System.Windows.Controls.TreeView)(target));

            #line 64 "..\..\UpdateProduct.xaml"
                this.treeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.treeView_MouseDoubleClick);

            #line default
            #line hidden

            #line 64 "..\..\UpdateProduct.xaml"
                this.treeView.KeyDown += new System.Windows.Input.KeyEventHandler(this.treeView_KeyDown);

            #line default
            #line hidden
                return;

            case 9:
                this.TextPrice = ((Xceed.Wpf.Toolkit.LongUpDown)(target));
                return;

            case 10:

            #line 80 "..\..\UpdateProduct.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);

            #line default
            #line hidden
                return;

            case 11:

            #line 81 "..\..\UpdateProduct.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_1);

            #line default
            #line hidden
                return;

            case 12:
                this.TextDescription = ((Xceed.Wpf.Toolkit.MultiLineTextEditor)(target));
                return;

            case 13:
                this.TextMake = ((System.Windows.Controls.ComboBox)(target));

            #line 94 "..\..\UpdateProduct.xaml"
                this.TextMake.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.TextMake_SelectionChanged);

            #line default
            #line hidden
                return;

            case 14:
                this.TextModel = ((System.Windows.Controls.ComboBox)(target));

            #line 99 "..\..\UpdateProduct.xaml"
                this.TextModel.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.TextModel_SelectionChanged);

            #line default
            #line hidden
                return;

            case 15:
                this.TextYearfrom = ((System.Windows.Controls.ComboBox)(target));

            #line 103 "..\..\UpdateProduct.xaml"
                this.TextYearfrom.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.TextYearfrom_SelectionChanged);

            #line default
            #line hidden
                return;

            case 16:
                this.TextYearTo = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 17:
                this.Combo_Aftermarket_Manufacturer = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 18:
                this.Text_Aftermarket_Manufacturer = ((System.Windows.Controls.TextBox)(target));
                return;

            case 19:
                this.StoragePlaceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 20:
                this.TextAmount = ((Xceed.Wpf.Toolkit.IntegerUpDown)(target));
                return;

            case 21:
                this.Picturebox = ((System.Windows.Controls.Image)(target));
                return;

            case 22:
                this.TextInterval = ((Xceed.Wpf.Toolkit.IntegerUpDown)(target));
                return;

            case 23:
                this.TextCondition = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 24:
                this.TextPhoto = ((Xceed.Wpf.Toolkit.MultiLineTextEditor)(target));
                return;

            case 25:

            #line 144 "..\..\UpdateProduct.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_2);

            #line default
            #line hidden
                return;

            case 26:
                this.cat = ((System.Windows.Controls.TextBox)(target));
                return;

            case 27:
                this.make = ((System.Windows.Controls.TextBox)(target));
                return;

            case 28:
                this.model = ((System.Windows.Controls.TextBox)(target));
                return;

            case 29:
                this.buffer = ((System.Windows.Controls.TextBox)(target));
                return;

            case 30:

            #line 158 "..\..\UpdateProduct.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_Upadate);

            #line default
            #line hidden
                return;

            case 31:

            #line 159 "..\..\UpdateProduct.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_ΝewParent);

            #line default
            #line hidden
                return;

            case 32:
                this.TextisParent = ((System.Windows.Controls.ComboBox)(target));

            #line 165 "..\..\UpdateProduct.xaml"
                this.TextisParent.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.TextisParent_SelectionChanged);

            #line default
            #line hidden
                return;

            case 33:
                this.TextColor = ((System.Windows.Controls.ComboBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 12 "..\..\MainWindow.xaml"
                ((HCI_projekat_2020.MainWindow)(target)).Closed += new System.EventHandler(this.Window_Closed);

            #line default
            #line hidden
                return;

            case 2:

            #line 15 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.Dogadjaj_CanExecute);

            #line default
            #line hidden

            #line 15 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.Dogadjaj_Executed);

            #line default
            #line hidden
                return;

            case 3:

            #line 16 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.Tip_CanExecute);

            #line default
            #line hidden

            #line 16 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.Tip_Executed);

            #line default
            #line hidden
                return;

            case 4:

            #line 17 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.Etiketa_CanExecute);

            #line default
            #line hidden

            #line 17 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.Etiketa_Executed);

            #line default
            #line hidden
                return;

            case 5:

            #line 18 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.Izadji_CanExecute);

            #line default
            #line hidden

            #line 18 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.Izadji_Executed);

            #line default
            #line hidden
                return;

            case 6:

            #line 19 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.UkloniEntitet_CanExecute);

            #line default
            #line hidden

            #line 19 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.UkloniEntitet_Executed);

            #line default
            #line hidden
                return;

            case 7:

            #line 20 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.pretraziEntitete_CanExecute);

            #line default
            #line hidden

            #line 20 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.pretraziEntitete_Executed);

            #line default
            #line hidden
                return;

            case 8:

            #line 21 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed);

            #line default
            #line hidden
                return;

            case 9:
                this.menu = ((System.Windows.Controls.Menu)(target));
                return;

            case 10:
                this.komande = ((System.Windows.Controls.MenuItem)(target));
                return;

            case 11:
                this.mI1 = ((System.Windows.Controls.MenuItem)(target));
                return;

            case 12:
                this.mI2 = ((System.Windows.Controls.MenuItem)(target));
                return;

            case 13:
                this.mI3 = ((System.Windows.Controls.MenuItem)(target));
                return;

            case 14:
                this.mI4 = ((System.Windows.Controls.MenuItem)(target));
                return;

            case 15:
                this.osvezi = ((System.Windows.Controls.MenuItem)(target));

            #line 61 "..\..\MainWindow.xaml"
                this.osvezi.Click += new System.Windows.RoutedEventHandler(this.osvezi_Click);

            #line default
            #line hidden
                return;

            case 16:

            #line 62 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.button8_Click);

            #line default
            #line hidden
                return;

            case 17:
                this.toolBar = ((System.Windows.Controls.ToolBar)(target));
                return;

            case 18:
                this.buttonTb1 = ((System.Windows.Controls.Button)(target));
                return;

            case 19:
                this.buttonTb2 = ((System.Windows.Controls.Button)(target));
                return;

            case 20:
                this.buttonTb3 = ((System.Windows.Controls.Button)(target));
                return;

            case 21:
                this.pomoc = ((System.Windows.Controls.CheckBox)(target));

            #line 100 "..\..\MainWindow.xaml"
                this.pomoc.Checked += new System.Windows.RoutedEventHandler(this.pomoc_Checked);

            #line default
            #line hidden

            #line 100 "..\..\MainWindow.xaml"
                this.pomoc.Unchecked += new System.Windows.RoutedEventHandler(this.pomoc_Unchecked);

            #line default
            #line hidden
                return;

            case 22:
                this.listView = ((System.Windows.Controls.ListView)(target));
                return;

            case 23:
                this.canvas123 = ((System.Windows.Controls.Canvas)(target));

            #line 115 "..\..\MainWindow.xaml"
                this.canvas123.DragOver += new System.Windows.DragEventHandler(this.canvas_DragOver);

            #line default
            #line hidden

            #line 115 "..\..\MainWindow.xaml"
                this.canvas123.Drop += new System.Windows.DragEventHandler(this.Canvas_Drop);

            #line default
            #line hidden
                return;

            case 24:
                this.textBlock = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 25:
                this.textBox = ((System.Windows.Controls.TextBox)(target));

            #line 125 "..\..\MainWindow.xaml"
                this.textBox.GotFocus += new System.Windows.RoutedEventHandler(this.textBox_GotFocus);

            #line default
            #line hidden

            #line 125 "..\..\MainWindow.xaml"
                this.textBox.LostFocus += new System.Windows.RoutedEventHandler(this.textBox_LostFocus);

            #line default
            #line hidden

            #line 125 "..\..\MainWindow.xaml"
                this.textBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.textBox_TextChanged);

            #line default
            #line hidden
                return;

            case 26:
                this.ponisti = ((System.Windows.Controls.Button)(target));

            #line 128 "..\..\MainWindow.xaml"
                this.ponisti.Click += new System.Windows.RoutedEventHandler(this.ponisti_Click);

            #line default
            #line hidden
                return;

            case 27:
                this.buttonFilter = ((System.Windows.Controls.Button)(target));

            #line 136 "..\..\MainWindow.xaml"
                this.buttonFilter.Click += new System.Windows.RoutedEventHandler(this.buttonFilter_Click);

            #line default
            #line hidden
                return;

            case 28:
                this.buttonDoFilter = ((System.Windows.Controls.Button)(target));

            #line 138 "..\..\MainWindow.xaml"
                this.buttonDoFilter.Click += new System.Windows.RoutedEventHandler(this.buttonDoFilter_Click);

            #line default
            #line hidden
                return;

            case 29:
                this.canvasFilters = ((System.Windows.Controls.Canvas)(target));
                return;

            case 30:
                this.treeView = ((System.Windows.Controls.TreeView)(target));
                return;

            case 31:
                this.HumKarDa = ((System.Windows.Controls.CheckBox)(target));

            #line 146 "..\..\MainWindow.xaml"
                this.HumKarDa.Checked += new System.Windows.RoutedEventHandler(this.humKar_Checked);

            #line default
            #line hidden

            #line 146 "..\..\MainWindow.xaml"
                this.HumKarDa.Unchecked += new System.Windows.RoutedEventHandler(this.humKar_Unchecked);

            #line default
            #line hidden
                return;

            case 32:
                this.HumKarNe = ((System.Windows.Controls.CheckBox)(target));

            #line 147 "..\..\MainWindow.xaml"
                this.HumKarNe.Checked += new System.Windows.RoutedEventHandler(this.humKar_Checked);

            #line default
            #line hidden

            #line 147 "..\..\MainWindow.xaml"
                this.HumKarNe.Unchecked += new System.Windows.RoutedEventHandler(this.humKar_Unchecked);

            #line default
            #line hidden
                return;

            case 33:
                this.p1 = ((System.Windows.Controls.CheckBox)(target));

            #line 154 "..\..\MainWindow.xaml"
                this.p1.Checked += new System.Windows.RoutedEventHandler(this.posecenost_Checked);

            #line default
            #line hidden

            #line 154 "..\..\MainWindow.xaml"
                this.p1.Unchecked += new System.Windows.RoutedEventHandler(this.posecenost_Unchecked);

            #line default
            #line hidden
                return;

            case 34:
                this.p2 = ((System.Windows.Controls.CheckBox)(target));

            #line 160 "..\..\MainWindow.xaml"
                this.p2.Checked += new System.Windows.RoutedEventHandler(this.posecenost_Checked);

            #line default
            #line hidden

            #line 160 "..\..\MainWindow.xaml"
                this.p2.Unchecked += new System.Windows.RoutedEventHandler(this.posecenost_Unchecked);

            #line default
            #line hidden
                return;

            case 35:
                this.p3 = ((System.Windows.Controls.CheckBox)(target));

            #line 166 "..\..\MainWindow.xaml"
                this.p3.Checked += new System.Windows.RoutedEventHandler(this.posecenost_Checked);

            #line default
            #line hidden

            #line 166 "..\..\MainWindow.xaml"
                this.p3.Unchecked += new System.Windows.RoutedEventHandler(this.posecenost_Unchecked);

            #line default
            #line hidden
                return;

            case 36:
                this.p4 = ((System.Windows.Controls.CheckBox)(target));

            #line 172 "..\..\MainWindow.xaml"
                this.p4.Checked += new System.Windows.RoutedEventHandler(this.posecenost_Checked);

            #line default
            #line hidden

            #line 172 "..\..\MainWindow.xaml"
                this.p4.Unchecked += new System.Windows.RoutedEventHandler(this.posecenost_Unchecked);

            #line default
            #line hidden
                return;

            case 37:
                this.listViewTip = ((System.Windows.Controls.ListView)(target));
                return;

            case 39:
                this.listViewEtiketa = ((System.Windows.Controls.ListView)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #55
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.cbbLoaiSanPham = ((System.Windows.Controls.ComboBox)(target));

            #line 33 "..\..\MainWindow.xaml"
                this.cbbLoaiSanPham.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cbbLoaiSanPham_SelectionChanged);

            #line default
            #line hidden
                return;

            case 2:
                this.danhSachSize = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 3:
                this.dsMau = ((System.Windows.Controls.WrapPanel)(target));
                return;

            case 4:
                this.txtDes = ((System.Windows.Controls.TextBox)(target));
                return;

            case 5:
                this.dsAnh = ((System.Windows.Controls.WrapPanel)(target));
                return;

            case 6:
                this.btnExport = ((System.Windows.Controls.Button)(target));

            #line 135 "..\..\MainWindow.xaml"
                this.btnExport.Click += new System.Windows.RoutedEventHandler(this.btnExport_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.txtPath = ((System.Windows.Controls.TextBox)(target));
                return;

            case 8:

            #line 151 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);

            #line default
            #line hidden
                return;

            case 9:
                this.trvFiles = ((System.Windows.Controls.TreeView)(target));

            #line 155 "..\..\MainWindow.xaml"
                this.trvFiles.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.trvFiles_SelectedItemChanged);

            #line default
            #line hidden
                return;

            case 10:
                this.trvItemFile = ((System.Windows.Controls.TreeViewItem)(target));
                return;

            case 11:
                this.btnAdd = ((System.Windows.Controls.Button)(target));

            #line 179 "..\..\MainWindow.xaml"
                this.btnAdd.Click += new System.Windows.RoutedEventHandler(this.btnAdd_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.btnResize = ((System.Windows.Controls.Button)(target));

            #line 180 "..\..\MainWindow.xaml"
                this.btnResize.Click += new System.Windows.RoutedEventHandler(this.btnResize_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #56
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.CatalogLabel = ((System.Windows.Controls.Label)(target));
     return;
     case 2:
     this.CatalogTree = ((System.Windows.Controls.TreeView)(target));
     return;
     case 3:
     this.CompareButton = ((System.Windows.Controls.Button)(target));
     
     #line 12 "..\..\MainWindow.xaml"
     this.CompareButton.Click += new System.Windows.RoutedEventHandler(this.button_Click);
     
     #line default
     #line hidden
     return;
     case 4:
     this.image = ((System.Windows.Controls.Image)(target));
     return;
     case 5:
     this.image_Copy = ((System.Windows.Controls.Image)(target));
     return;
     case 6:
     this.image_Copy1 = ((System.Windows.Controls.Image)(target));
     return;
     case 7:
     this.RamiLeviPriceTextBlock = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 8:
     this.ShufersalPriceTextBlock = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 9:
     this.VictoryPriceTextBlock = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 10:
     this.MostExpensiveRamiLeviListView = ((System.Windows.Controls.ListView)(target));
     return;
     case 11:
     this.MostExpansiveShufersalListView = ((System.Windows.Controls.ListView)(target));
     return;
     case 12:
     this.MostExpansiveVictoryListView = ((System.Windows.Controls.ListView)(target));
     return;
     case 13:
     this.CheapestRamiLeviListView = ((System.Windows.Controls.ListView)(target));
     return;
     case 14:
     this.CheapestShufersalListView = ((System.Windows.Controls.ListView)(target));
     return;
     case 15:
     this.CheapestVictoryView = ((System.Windows.Controls.ListView)(target));
     return;
     case 16:
     this.ExpansiveProductsTextBlock = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 17:
     this.CheapestProductsTextBlock = ((System.Windows.Controls.TextBlock)(target));
     return;
     }
     this._contentLoaded = true;
 }
Пример #57
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.window = ((MCSE_Editor_for_Wii_U.MainWindow)(target));

            #line 8 "..\..\MainWindow.xaml"
                this.window.Loaded += new System.Windows.RoutedEventHandler(this.window_Loaded);

            #line default
            #line hidden
                return;

            case 2:

            #line 161 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_2);

            #line default
            #line hidden
                return;

            case 3:

            #line 162 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.treeView = ((System.Windows.Controls.TreeView)(target));

            #line 166 "..\..\MainWindow.xaml"
                this.treeView.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.treeView_SelectedItemChanged);

            #line default
            #line hidden
                return;

            case 6:
                this.noOpenText = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 7:
                this.homeButton = ((System.Windows.Controls.Button)(target));

            #line 183 "..\..\MainWindow.xaml"
                this.homeButton.Click += new System.Windows.RoutedEventHandler(this.Button_Click_1);

            #line default
            #line hidden
                return;

            case 8:
                this.homeToolButton = ((System.Windows.Controls.Button)(target));

            #line 187 "..\..\MainWindow.xaml"
                this.homeToolButton.Click += new System.Windows.RoutedEventHandler(this.homeToolButton_Click);

            #line default
            #line hidden
                return;

            case 9:
                this.infoToolButton = ((System.Windows.Controls.Button)(target));

            #line 195 "..\..\MainWindow.xaml"
                this.infoToolButton.Click += new System.Windows.RoutedEventHandler(this.infoToolButton_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.settingToolButton = ((System.Windows.Controls.Button)(target));

            #line 203 "..\..\MainWindow.xaml"
                this.settingToolButton.Click += new System.Windows.RoutedEventHandler(this.settingToolButton_Click);

            #line default
            #line hidden
                return;

            case 11:
                this.replaceToolButton = ((System.Windows.Controls.Button)(target));

            #line 211 "..\..\MainWindow.xaml"
                this.replaceToolButton.Click += new System.Windows.RoutedEventHandler(this.replaceToolButton_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.downloadToolButton = ((System.Windows.Controls.Button)(target));

            #line 219 "..\..\MainWindow.xaml"
                this.downloadToolButton.Click += new System.Windows.RoutedEventHandler(this.downloadToolButton_Click);

            #line default
            #line hidden
                return;

            case 13:
                this.saveToolButton = ((System.Windows.Controls.Button)(target));

            #line 227 "..\..\MainWindow.xaml"
                this.saveToolButton.Click += new System.Windows.RoutedEventHandler(this.saveToolButton_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #58
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 32 "..\..\..\..\Views\ContactClasification\ContactClasification.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Delete_Click);

            #line default
            #line hidden
                return;

            case 2:

            #line 39 "..\..\..\..\Views\ContactClasification\ContactClasification.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.playtutorial_Click);

            #line default
            #line hidden
                return;

            case 3:

            #line 48 "..\..\..\..\Views\ContactClasification\ContactClasification.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnNew_Clicks);

            #line default
            #line hidden
                return;

            case 4:

            #line 55 "..\..\..\..\Views\ContactClasification\ContactClasification.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnEdit_Clicks);

            #line default
            #line hidden
                return;

            case 5:
                this.TvContactClasification = ((System.Windows.Controls.TreeView)(target));

            #line 62 "..\..\..\..\Views\ContactClasification\ContactClasification.xaml"
                this.TvContactClasification.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.TvContactClasification_SelectedItemChanged);

            #line default
            #line hidden
                return;

            case 6:
                this.txtIDContactClasification = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 7:
                this.txtContactType = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 8:
                this.txtKlasifikasiKontak = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 9:
                this.txtAyah = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 10:
                this.txtIbu = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 11:
                this.txtKakak = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 12:
                this.txtNote = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #59
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 5 "..\..\..\MainWindow.xaml"
                ((LevelEditor.MainWindow)(target)).KeyDown += new System.Windows.Input.KeyEventHandler(this.Window_KeyDown);

            #line default
            #line hidden

            #line 5 "..\..\..\MainWindow.xaml"
                ((LevelEditor.MainWindow)(target)).KeyUp += new System.Windows.Input.KeyEventHandler(this.Window_KeyUp);

            #line default
            #line hidden

            #line 5 "..\..\..\MainWindow.xaml"
                ((LevelEditor.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.MainWindow_Closing);

            #line default
            #line hidden
                return;

            case 2:
                this.ContainerGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 3:
                this.MainDockPanel = ((System.Windows.Controls.DockPanel)(target));
                return;

            case 4:
                this.FileTreeview = ((System.Windows.Controls.TreeView)(target));

            #line 18 "..\..\..\MainWindow.xaml"
                this.FileTreeview.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.FileTreeview_SelectedItemChanged);

            #line default
            #line hidden
                return;

            case 5:
                this.LayoutRoot = ((System.Windows.Controls.Grid)(target));
                return;

            case 6:
                this.SearchLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 7:
                this.SearchText = ((System.Windows.Controls.TextBox)(target));

            #line 43 "..\..\..\MainWindow.xaml"
                this.SearchText.KeyDown += new System.Windows.Input.KeyEventHandler(this.SearchText_KeyDown);

            #line default
            #line hidden

            #line 43 "..\..\..\MainWindow.xaml"
                this.SearchText.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.SearchText_TextChanged);

            #line default
            #line hidden
                return;

            case 8:
                this.SearchForwardButton = ((System.Windows.Controls.Image)(target));

            #line 44 "..\..\..\MainWindow.xaml"
                this.SearchForwardButton.AddHandler(System.Windows.Input.Mouse.MouseDownEvent, new System.Windows.Input.MouseButtonEventHandler(this.SearchForwardButton_MouseDown));

            #line default
            #line hidden
                return;

            case 9:
                this.ScaleLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 10:
                this.ScaleText = ((System.Windows.Controls.TextBox)(target));

            #line 46 "..\..\..\MainWindow.xaml"
                this.ScaleText.KeyDown += new System.Windows.Input.KeyEventHandler(this.ScaleText_KeyDown);

            #line default
            #line hidden
                return;

            case 11:
                this.AutoScaling = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 12:
                this.DownloadFiles = ((System.Windows.Controls.Button)(target));

            #line 48 "..\..\..\MainWindow.xaml"
                this.DownloadFiles.Click += new System.Windows.RoutedEventHandler(this.DownloadFiles_Click);

            #line default
            #line hidden
                return;

            case 13:
                this.OgreWinFormsHost = ((System.Windows.Forms.Integration.WindowsFormsHost)(target));
                return;

            case 14:

            #line 53 "..\..\..\MainWindow.xaml"
                ((System.Windows.Forms.Panel)(target)).MouseMove += new System.Windows.Forms.MouseEventHandler(this.Panel_MouseMove);

            #line default
            #line hidden

            #line 53 "..\..\..\MainWindow.xaml"
                ((System.Windows.Forms.Panel)(target)).MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel_MouseDown);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #60
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.MainWindow1 = ((DbcComparer.MainWindow)(target));
                return;

            case 2:

            #line 14 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.tvExpand_Executed);

            #line default
            #line hidden

            #line 14 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.tvExpand_CanExecuted);

            #line default
            #line hidden
                return;

            case 3:

            #line 15 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.tvCollapse_Executed);

            #line default
            #line hidden

            #line 15 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.tvCollapse_CanExecuted);

            #line default
            #line hidden
                return;

            case 4:

            #line 16 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.tvCopyName_Executed);

            #line default
            #line hidden

            #line 16 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.tvCopyName_CanExecuted);

            #line default
            #line hidden
                return;

            case 5:

            #line 17 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.tvFindMatch_Executed);

            #line default
            #line hidden

            #line 17 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.tvFindMatch_CanExecuted);

            #line default
            #line hidden
                return;

            case 6:

            #line 19 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.tvExpandB_Executed);

            #line default
            #line hidden

            #line 19 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.tvExpandB_CanExecuted);

            #line default
            #line hidden
                return;

            case 7:

            #line 20 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.tvCollapseB_Executed);

            #line default
            #line hidden

            #line 20 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.tvCollapseB_CanExecuted);

            #line default
            #line hidden
                return;

            case 8:

            #line 21 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.tvCopyNameB_Executed);

            #line default
            #line hidden

            #line 21 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.tvCopyNameB_CanExecuted);

            #line default
            #line hidden
                return;

            case 9:

            #line 22 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.tvFindMatchB_Executed);

            #line default
            #line hidden

            #line 22 "..\..\MainWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.tvFindMatchB_CanExecuted);

            #line default
            #line hidden
                return;

            case 10:
                this.MergeBtn = ((System.Windows.Controls.Button)(target));

            #line 100 "..\..\MainWindow.xaml"
                this.MergeBtn.Click += new System.Windows.RoutedEventHandler(this.MergeBtn_Click);

            #line default
            #line hidden
                return;

            case 11:
                this.About = ((System.Windows.Controls.Button)(target));

            #line 103 "..\..\MainWindow.xaml"
                this.About.Click += new System.Windows.RoutedEventHandler(this.About_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.dbcBase = ((System.Windows.Controls.Button)(target));

            #line 124 "..\..\MainWindow.xaml"
                this.dbcBase.Click += new System.Windows.RoutedEventHandler(this.dbcBase_Click);

            #line default
            #line hidden
                return;

            case 13:
                this.treeViewBase = ((System.Windows.Controls.TreeView)(target));
                return;

            case 14:
                this.rpPropertyA = ((System.Windows.Controls.ContentPresenter)(target));
                return;

            case 15:
                this.dbcTarget = ((System.Windows.Controls.Button)(target));

            #line 249 "..\..\MainWindow.xaml"
                this.dbcTarget.Click += new System.Windows.RoutedEventHandler(this.dbcTarget_Click);

            #line default
            #line hidden
                return;

            case 16:
                this.treeViewTarget = ((System.Windows.Controls.TreeView)(target));
                return;

            case 17:
                this.rpPropertyB = ((System.Windows.Controls.ContentPresenter)(target));
                return;

            case 18:
                this.cbAdded = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 19:
                this.cbRemoved = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 20:
                this.cbModified = ((System.Windows.Controls.CheckBox)(target));
                return;
            }
            this._contentLoaded = true;
        }