Inheritance: Xceed.Wpf.Toolkit.Primitives.Selector
示例#1
0
            void ccb_ItemSelectionChanged(object sender, Xceed.Wpf.Toolkit.Primitives.ItemSelectionChangedEventArgs e)
            {
                Xceed.Wpf.Toolkit.CheckComboBox ccb = (Xceed.Wpf.Toolkit.CheckComboBox)sender;
                int mask = 0;

                foreach (var item in ccb.SelectedItems)
                {
                    double index = Convert.ToDouble(item.ToString().Substring(6));
                    mask = mask + (int)Math.Pow(2, index);
                }
                ccb.Text = mask.ToString("000");

                var Selection = designerCanvas.SelectionService.CurrentSelection;
                ViewModelDesignerItem Ditem = new ViewModelDesignerItem();

                foreach (var slc in Selection)
                {
                    Ditem = (ViewModelDesignerItem)slc;
                }
                DockPanel    Sourcepnl        = (DockPanel)Ditem.Content;
                PropertyGrid SelectedPgrid    = designerCanvas.TransactionList.Find(x => x.Id == Sourcepnl.Uid).PropertyGrid;
                string       SelectedProperty = property.DisplayName;
                string       newValue         = ccb.Text;
                StateD       stated           = (StateD)SelectedPgrid.SelectedObject;

                Type         ClassType    = stated.GetType();
                PropertyInfo propertyName = ClassType.GetProperty(SelectedProperty);

                propertyName.SetValue(stated, newValue, null);
                designerCanvas.TransactionList.Find(x => x.Id == Sourcepnl.Uid).PropertyGrid.SelectedObject = stated;
            }
示例#2
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.demo = ((Xceed.Wpf.Toolkit.LiveExplorer.Samples.CheckLists.Views.CheckListsView)(target));
                return;

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

            case 3:
                this._valueMemberPath = ((System.Windows.Controls.ComboBox)(target));
                return;

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

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

            case 6:
                this._displayMemberPath = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 7:
                this._isSelectAllActive = ((System.Windows.Controls.CheckBox)(target));
                return;

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

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

            case 10:
                this._isDropDownOpen = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 11:
                this._maxDropDownHeight = ((Xceed.Wpf.Toolkit.DoubleUpDown)(target));
                return;

            case 12:
                this._checkListBox = ((Xceed.Wpf.Toolkit.CheckListBox)(target));
                return;

            case 13:
                this._checkComboBox = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
示例#3
0
        private static void OnIsDropDownOpenChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
        {
            CheckComboBox comboBox = o as CheckComboBox;

            if (comboBox != null)
            {
                comboBox.OnIsDropDownOpenChanged(( bool )e.OldValue, ( bool )e.NewValue);
            }
        }
示例#4
0
        private static void OnMaxDropDownHeightChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
        {
            CheckComboBox comboBox = o as CheckComboBox;

            if (comboBox != null)
            {
                comboBox.OnMaxDropDownHeightChanged(( double )e.OldValue, ( double )e.NewValue);
            }
        }
示例#5
0
            public FrameworkElement ResolveEditor(PropertyItem propertyItem)
            {
                property = propertyItem;
                Xceed.Wpf.Toolkit.CheckComboBox ccb = new Xceed.Wpf.Toolkit.CheckComboBox();

                for (int i = 0; i < 8; i++)
                {
                    ccb.Items.Add("OpCode" + i.ToString());
                }
                ccb.Name = property.DisplayName;
                ccb.Text = property.Value.ToString();
                ccb.ItemSelectionChanged += ccb_ItemSelectionChanged;
                return(ccb);
            }
示例#6
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.EventsCheckCB = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;

            case 2:
                this.BingMap = ((Microsoft.Maps.MapControl.WPF.Map)(target));
                return;

            case 3:
                this.MapItems = ((Microsoft.Maps.MapControl.WPF.MapItemsControl)(target));
                return;
            }
            this._contentLoaded = true;
        }
示例#7
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.Name = ((Xceed.Wpf.Toolkit.WatermarkTextBox)(target));
                return;

            case 2:
                this.StartDate = ((Xceed.Wpf.Toolkit.DateTimePicker)(target));
                return;

            case 3:
                this.Days = ((Xceed.Wpf.Toolkit.IntegerUpDown)(target));
                return;

            case 4:
                this.Address = ((Xceed.Wpf.Toolkit.WatermarkTextBox)(target));
                return;

            case 5:
                this.Required = ((Xceed.Wpf.Toolkit.IntegerUpDown)(target));
                return;

            case 6:
                this.Comment = ((Xceed.Wpf.Toolkit.MultiLineTextEditor)(target));
                return;

            case 7:
                this.Assigned = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;

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

            #line 25 "..\..\AddTaskDialog.xaml"
                this.Add_Task.Click += new System.Windows.RoutedEventHandler(this.Add_Task_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
示例#8
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 6 "..\..\..\..\..\src\window\add\NewSubjectWindow.xaml"
                ((timetable.src.window.add.NewSubjectWindow)(target)).KeyDown += new System.Windows.Input.KeyEventHandler(this.enterKeyDown);

            #line default
            #line hidden
                return;

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

            case 3:
                this.classesComboBox = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;

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

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

            #line 37 "..\..\..\..\..\src\window\add\NewSubjectWindow.xaml"
                this.addButton.Click += new System.Windows.RoutedEventHandler(this.addSubject);

            #line default
            #line hidden
                return;

            case 6:
                this.errorTextBox = ((System.Windows.Controls.TextBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.EventsCheckCB = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;

            case 2:
                this.BingMap = ((Microsoft.Maps.MapControl.WPF.Map)(target));

            #line 29 "..\..\..\Views\MapView.xaml"
                this.BingMap.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.BingMap_MouseDoubleClick);

            #line default
            #line hidden
                return;

            case 3:
                this.MapItems = ((Microsoft.Maps.MapControl.WPF.MapItemsControl)(target));
                return;
            }
            this._contentLoaded = true;
        }
示例#10
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.textBoxId = ((System.Windows.Controls.TextBox)(target));

            #line 48 "..\..\EditResource.xaml"
                this.textBoxId.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.textBoxId_Error));

            #line default
            #line hidden

            #line 48 "..\..\EditResource.xaml"
                this.textBoxId.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.textBoxId_TextChanged);

            #line default
            #line hidden
                return;

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

            #line 77 "..\..\EditResource.xaml"
                this.textBoxPrice.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.textBoxPrice_Error));

            #line default
            #line hidden

            #line 77 "..\..\EditResource.xaml"
                this.textBoxPrice.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.textBoxPrice_TextChanged);

            #line default
            #line hidden
                return;

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

            #line 109 "..\..\EditResource.xaml"
                this.textBoxName.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.textBoxName_Error));

            #line default
            #line hidden
                return;

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

            #line 136 "..\..\EditResource.xaml"
                this.textBoxDescription.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.textBoxDescription_Error));

            #line default
            #line hidden
                return;

            case 5:
                this.datePicker = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 6:
                this.autoCompleteBoxTypes = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 173 "..\..\EditResource.xaml"
                this.autoCompleteBoxTypes.LostFocus += new System.Windows.RoutedEventHandler(this.autoCompleteBoxTypes_LostFocus);

            #line default
            #line hidden

            #line 173 "..\..\EditResource.xaml"
                this.autoCompleteBoxTypes.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.autoCompleteBoxType_PreviewKeyDown);

            #line default
            #line hidden
                return;

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

            #line 180 "..\..\EditResource.xaml"
                this.buttonAddNewType.Click += new System.Windows.RoutedEventHandler(this.buttonAddNewType_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.autoCompleteBoxTags = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 196 "..\..\EditResource.xaml"
                this.autoCompleteBoxTags.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.autoCompleteBoxTag_PreviewKeyDown);

            #line default
            #line hidden
                return;

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

            #line 203 "..\..\EditResource.xaml"
                this.buttonAddNewTag.Click += new System.Windows.RoutedEventHandler(this.buttonAddNewTag_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.comboBoxTags = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;

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

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

            #line 225 "..\..\EditResource.xaml"
                this.loadIcon.Click += new System.Windows.RoutedEventHandler(this.loadIcon_Click);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

            #line 255 "..\..\EditResource.xaml"
                this.buttonSave.Click += new System.Windows.RoutedEventHandler(this.buttonSave_Click);

            #line default
            #line hidden
                return;

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

            #line 256 "..\..\EditResource.xaml"
                this.buttonCancel.Click += new System.Windows.RoutedEventHandler(this.buttonCancel_Click);

            #line default
            #line hidden
                return;

            case 20:
                this.textBoxTypeError = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }
示例#11
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.userPlayLists = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;

            case 2:

            #line 43 "..\..\..\view\RegisterUserWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.goToTheDiaologs);

            #line default
            #line hidden
                return;

            case 3:

            #line 44 "..\..\..\view\RegisterUserWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.logOut);

            #line default
            #line hidden
                return;

            case 4:
                this.lblStatus = ((System.Windows.Controls.Label)(target));
                return;

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

            #line 48 "..\..\..\view\RegisterUserWindow.xaml"
                this.btnPlay.Click += new System.Windows.RoutedEventHandler(this.btnPlay_Click);

            #line default
            #line hidden
                return;

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

            #line 49 "..\..\..\view\RegisterUserWindow.xaml"
                this.btnPause.Click += new System.Windows.RoutedEventHandler(this.btnPause_Click);

            #line default
            #line hidden
                return;

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

            #line 50 "..\..\..\view\RegisterUserWindow.xaml"
                this.btnStop.Click += new System.Windows.RoutedEventHandler(this.btnStop_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.SongSlider = ((System.Windows.Controls.Slider)(target));

            #line 54 "..\..\..\view\RegisterUserWindow.xaml"
                this.SongSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.songSound);

            #line default
            #line hidden
                return;

            case 9:
                this.SongDrid = ((System.Windows.Controls.DataGrid)(target));

            #line 56 "..\..\..\view\RegisterUserWindow.xaml"
                this.SongDrid.Loaded += new System.Windows.RoutedEventHandler(this.loadInSongGrid);

            #line default
            #line hidden

            #line 56 "..\..\..\view\RegisterUserWindow.xaml"
                this.SongDrid.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.somt);

            #line default
            #line hidden
                return;

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

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

            case 12:
                this.Name = ((System.Windows.Controls.CheckBox)(target));

            #line 75 "..\..\..\view\RegisterUserWindow.xaml"
                this.Name.Click += new System.Windows.RoutedEventHandler(this.searchParams);

            #line default
            #line hidden
                return;

            case 13:
                this.Type = ((System.Windows.Controls.CheckBox)(target));

            #line 76 "..\..\..\view\RegisterUserWindow.xaml"
                this.Type.Click += new System.Windows.RoutedEventHandler(this.searchParams);

            #line default
            #line hidden
                return;

            case 14:
                this.AuthorName = ((System.Windows.Controls.CheckBox)(target));

            #line 77 "..\..\..\view\RegisterUserWindow.xaml"
                this.AuthorName.Click += new System.Windows.RoutedEventHandler(this.searchParams);

            #line default
            #line hidden
                return;

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

            #line 78 "..\..\..\view\RegisterUserWindow.xaml"
                this.Album.Click += new System.Windows.RoutedEventHandler(this.searchParams);

            #line default
            #line hidden
                return;

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

            #line 79 "..\..\..\view\RegisterUserWindow.xaml"
                this.Duraction.Click += new System.Windows.RoutedEventHandler(this.searchParams);

            #line default
            #line hidden
                return;

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

            #line 80 "..\..\..\view\RegisterUserWindow.xaml"
                this.Description.Click += new System.Windows.RoutedEventHandler(this.searchParams);

            #line default
            #line hidden
                return;

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

            #line 81 "..\..\..\view\RegisterUserWindow.xaml"
                this.searchField.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.search);

            #line default
            #line hidden
                return;

            case 19:

            #line 82 "..\..\..\view\RegisterUserWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.playSelectedSong);

            #line default
            #line hidden
                return;

            case 20:
                this.commentList = ((System.Windows.Controls.ListBox)(target));
                return;

            case 21:

            #line 96 "..\..\..\view\RegisterUserWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.sendComment);

            #line default
            #line hidden
                return;

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

            case 23:
                this.playListDrid = ((System.Windows.Controls.DataGrid)(target));

            #line 98 "..\..\..\view\RegisterUserWindow.xaml"
                this.playListDrid.Loaded += new System.Windows.RoutedEventHandler(this.loadInPlayListGrid);

            #line default
            #line hidden

            #line 98 "..\..\..\view\RegisterUserWindow.xaml"
                this.playListDrid.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.showPlayListSongs);

            #line default
            #line hidden
                return;

            case 24:

            #line 109 "..\..\..\view\RegisterUserWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.createPlayList);

            #line default
            #line hidden
                return;

            case 25:

            #line 110 "..\..\..\view\RegisterUserWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.addSongInPlayLists);

            #line default
            #line hidden
                return;

            case 26:

            #line 111 "..\..\..\view\RegisterUserWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.showAllSongs);

            #line default
            #line hidden
                return;

            case 27:

            #line 112 "..\..\..\view\RegisterUserWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.delete);

            #line default
            #line hidden
                return;

            case 28:

            #line 113 "..\..\..\view\RegisterUserWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.update);

            #line default
            #line hidden
                return;

            case 29:

            #line 114 "..\..\..\view\RegisterUserWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.deleteSongFromPlayList);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
示例#12
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 14 "..\..\Detaljnije.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.Izlaz_Click);

            #line default
            #line hidden
                return;

            case 2:

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

            #line default
            #line hidden
                return;

            case 3:

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

            #line default
            #line hidden
                return;

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

            #line 27 "..\..\Detaljnije.xaml"
                this.textB_id.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextB_id_TextChanged);

            #line default
            #line hidden

            #line 27 "..\..\Detaljnije.xaml"
                this.textB_id.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.TextB_id_Error));

            #line default
            #line hidden
                return;

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

            #line 52 "..\..\Detaljnije.xaml"
                this.textB_naziv.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.TextB_naziv_Error));

            #line default
            #line hidden
                return;

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

            #line 77 "..\..\Detaljnije.xaml"
                this.textB_opis.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.TextB_opis_Error));

            #line default
            #line hidden
                return;

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

            #line 106 "..\..\Detaljnije.xaml"
                this.textB_datum.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.TextB_datum_Error));

            #line default
            #line hidden
                return;

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

            #line 136 "..\..\Detaljnije.xaml"
                this.textB_kapacitet.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextB_kapacitet_TextChanged);

            #line default
            #line hidden
                return;

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

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

            #line 158 "..\..\Detaljnije.xaml"
                this.textB_ikonica.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.TextB_ikonica_Error));

            #line default
            #line hidden
                return;

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

            #line 175 "..\..\Detaljnije.xaml"
                this.loadIcon.Click += new System.Windows.RoutedEventHandler(this.LoadIcon_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.combo_alkohol = ((System.Windows.Controls.ComboBox)(target));

            #line 194 "..\..\Detaljnije.xaml"
                this.combo_alkohol.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Alkohol_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

            #line 213 "..\..\Detaljnije.xaml"
                this.combo_pusenje.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Pušenje_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

            #line 232 "..\..\Detaljnije.xaml"
                this.combo_cene.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Cena_SelectionChanged);

            #line default
            #line hidden
                return;

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

            case 18:
                this.combo_rezervacije = ((System.Windows.Controls.ComboBox)(target));

            #line 252 "..\..\Detaljnije.xaml"
                this.combo_rezervacije.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Rezervacije_SelectionChanged);

            #line default
            #line hidden
                return;

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

            case 20:
                this.combo_hendikepirani = ((System.Windows.Controls.ComboBox)(target));

            #line 271 "..\..\Detaljnije.xaml"
                this.combo_hendikepirani.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Hendikepirani_SelectionChanged);

            #line default
            #line hidden
                return;

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

            case 22:
                this.autoCompleteBoxTags = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 300 "..\..\Detaljnije.xaml"
                this.autoCompleteBoxTags.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.autoCompleteBoxTag_PreviewKeyDown);

            #line default
            #line hidden
                return;

            case 23:
                this.dodajEtiketuBtn = ((System.Windows.Controls.Button)(target));

            #line 307 "..\..\Detaljnije.xaml"
                this.dodajEtiketuBtn.Click += new System.Windows.RoutedEventHandler(this.dodajEtiketuBtn_Click);

            #line default
            #line hidden
                return;

            case 24:
                this.comboBoxTags = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;

            case 25:
                this.combo_tipovi = ((System.Windows.Controls.ComboBox)(target));

            #line 339 "..\..\Detaljnije.xaml"
                this.combo_tipovi.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Combo_tipovi_SelectionChanged);

            #line default
            #line hidden

            #line 339 "..\..\Detaljnije.xaml"
                this.combo_tipovi.Loaded += new System.Windows.RoutedEventHandler(this.Combo_tipovi_Loaded);

            #line default
            #line hidden
                return;

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

            #line 340 "..\..\Detaljnije.xaml"
                this.noviTip.Click += new System.Windows.RoutedEventHandler(this.NoviTip_Click);

            #line default
            #line hidden
                return;

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

            case 28:
                this.Obriši = ((System.Windows.Controls.Button)(target));

            #line 352 "..\..\Detaljnije.xaml"
                this.Obriši.Click += new System.Windows.RoutedEventHandler(this.Brisanje_Click);

            #line default
            #line hidden
                return;

            case 29:
                this.Odustani = ((System.Windows.Controls.Button)(target));

            #line 353 "..\..\Detaljnije.xaml"
                this.Odustani.Click += new System.Windows.RoutedEventHandler(this.Izlaz_Click);

            #line default
            #line hidden
                return;

            case 30:
                this.Sacuvaj = ((System.Windows.Controls.Button)(target));

            #line 354 "..\..\Detaljnije.xaml"
                this.Sacuvaj.Click += new System.Windows.RoutedEventHandler(this.Sacuvaj_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
示例#13
0
 private void SetCorrectPhaseToOverlapPhase(CheckComboBox ccb,int opUcId)
 {
     t = Utils.Utils.GetTscDataByApplicationCurrentProperties();
     foreach (OverlapPhase op in t.ListOverlapPhase)
     {
         if (op.ucId == opUcId)
         {
             List<byte> lb = new List<byte>();
             foreach (Object o in ccb.SelectedItems)
             {
                 Phase po = (Phase)o;
                 lb.Add(po.ucId);//po.ucId
             }
             op.ucCorrectPhase = lb.ToArray<byte>();
         }
     }
 }
示例#14
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.RightRectangle = ((System.Windows.Controls.Grid)(target));
                return;

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

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

            case 4:
                this.lOpis = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

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

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

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

            #line 74 "..\..\..\Prozori\Species.xaml"
                this.btnDodajSliku.Click += new System.Windows.RoutedEventHandler(this.Add_Image);

            #line default
            #line hidden
                return;

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

            #line 75 "..\..\..\Prozori\Species.xaml"
                this.btnDodajUListu.Click += new System.Windows.RoutedEventHandler(this.Dodavanje_Zivotinje);

            #line default
            #line hidden
                return;

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

            #line 80 "..\..\..\Prozori\Species.xaml"
                this.btnAzurirajListu.Click += new System.Windows.RoutedEventHandler(this.Azuriranje_Zivotinje);

            #line default
            #line hidden
                return;

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

            #line 85 "..\..\..\Prozori\Species.xaml"
                this.btnObrisi.Click += new System.Windows.RoutedEventHandler(this.Brisanje_Zivotinje);

            #line default
            #line hidden
                return;

            case 14:
                this.pickDatum = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 15:
                this.godPrihod = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 17:
                this.ImeZivotinje = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 19:
                this.StUgrZivotinje = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 20:
                this.StTurZivotinje = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 21:
                this.TipZivotinje = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 22:
                this.EtiketeZivotinje = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;

            case 23:
                this.rctSlika = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 24:
                this.SlikaZivotinje = ((System.Windows.Controls.Image)(target));
                return;

            case 25:
                this.cbOpasna = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 26:
                this.cbNaseljeniRegion = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 27:
                this.cbCrvenaLista = ((System.Windows.Controls.CheckBox)(target));
                return;

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

            case 29:
                this.btnKreirajTip = ((System.Windows.Controls.Button)(target));

            #line 278 "..\..\..\Prozori\Species.xaml"
                this.btnKreirajTip.Click += new System.Windows.RoutedEventHandler(this.Dodaj_Tip);

            #line default
            #line hidden
                return;

            case 30:
                this.btnAzurirajTip = ((System.Windows.Controls.Button)(target));

            #line 284 "..\..\..\Prozori\Species.xaml"
                this.btnAzurirajTip.Click += new System.Windows.RoutedEventHandler(this.Azuriraj_Tip);

            #line default
            #line hidden
                return;

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

            #line 290 "..\..\..\Prozori\Species.xaml"
                this.btnObrisiTip.Click += new System.Windows.RoutedEventHandler(this.Obrisi_Tip);

            #line default
            #line hidden
                return;

            case 32:
                this.btnPonisti = ((System.Windows.Controls.Button)(target));

            #line 296 "..\..\..\Prozori\Species.xaml"
                this.btnPonisti.Click += new System.Windows.RoutedEventHandler(this.Nazad);

            #line default
            #line hidden
                return;

            case 33:
                this.btnObrisiTip2 = ((System.Windows.Controls.Button)(target));

            #line 302 "..\..\..\Prozori\Species.xaml"
                this.btnObrisiTip2.Click += new System.Windows.RoutedEventHandler(this.Obrisi_Tip2);

            #line default
            #line hidden
                return;

            case 34:
                this.upozorenje = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 35:
                this.noviT = ((System.Windows.Controls.Label)(target));
                return;

            case 36:
                this.lab1 = ((System.Windows.Controls.Label)(target));
                return;

            case 37:
                this.lab2 = ((System.Windows.Controls.Label)(target));
                return;

            case 38:
                this.lab3 = ((System.Windows.Controls.Label)(target));
                return;

            case 39:
                this.lab4 = ((System.Windows.Controls.Label)(target));
                return;

            case 40:
                this.idTipa = ((System.Windows.Controls.TextBox)(target));
                return;

            case 41:
                this.imeTipa = ((System.Windows.Controls.TextBox)(target));
                return;

            case 42:
                this.opisTipa = ((System.Windows.Controls.TextBox)(target));
                return;

            case 43:
                this.rctSlikaa = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 44:
                this.Ikonica = ((System.Windows.Controls.Image)(target));
                return;

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

            #line 377 "..\..\..\Prozori\Species.xaml"
                this.uvozIkonice.Click += new System.Windows.RoutedEventHandler(this.Dodaj_Ikonicu);

            #line default
            #line hidden
                return;

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

            case 47:
                this.btnKreirajEtiketu = ((System.Windows.Controls.Button)(target));

            #line 405 "..\..\..\Prozori\Species.xaml"
                this.btnKreirajEtiketu.Click += new System.Windows.RoutedEventHandler(this.Dodaj_Etiketu);

            #line default
            #line hidden
                return;

            case 48:
                this.btnAzurirajEtiketu = ((System.Windows.Controls.Button)(target));

            #line 411 "..\..\..\Prozori\Species.xaml"
                this.btnAzurirajEtiketu.Click += new System.Windows.RoutedEventHandler(this.Azuriraj_Etiketu);

            #line default
            #line hidden
                return;

            case 49:
                this.btnObrisiEtiketu = ((System.Windows.Controls.Button)(target));

            #line 417 "..\..\..\Prozori\Species.xaml"
                this.btnObrisiEtiketu.Click += new System.Windows.RoutedEventHandler(this.Obrisi_Etiketu);

            #line default
            #line hidden
                return;

            case 50:
                this.novaE = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

            case 54:
                this.idEtiketa = ((System.Windows.Controls.TextBox)(target));

            #line 428 "..\..\..\Prozori\Species.xaml"
                this.idEtiketa.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.IdEtiketa_TextChanged);

            #line default
            #line hidden
                return;

            case 55:
                this.cbBoja = ((Xceed.Wpf.Toolkit.ColorPicker)(target));
                return;

            case 56:
                this.opisEtiketa = ((System.Windows.Controls.TextBox)(target));
                return;

            case 57:

            #line 467 "..\..\..\Prozori\Species.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Back);

            #line default
            #line hidden
                return;

            case 58:
                this.nazivListe = ((System.Windows.Controls.Label)(target));
                return;

            case 59:
                this.zivotinje = ((System.Windows.Controls.ListView)(target));

            #line 481 "..\..\..\Prozori\Species.xaml"
                this.zivotinje.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Selekcija_Liste);

            #line default
            #line hidden
                return;

            case 60:
                this.etikete = ((System.Windows.Controls.ListView)(target));

            #line 496 "..\..\..\Prozori\Species.xaml"
                this.etikete.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Selekcija_Liste_Etikete);

            #line default
            #line hidden
                return;

            case 61:
                this.tipovi = ((System.Windows.Controls.ListView)(target));

            #line 509 "..\..\..\Prozori\Species.xaml"
                this.tipovi.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Selekcija_Liste_Tipovi);

            #line default
            #line hidden
                return;

            case 62:
                this.btnZ = ((System.Windows.Controls.Button)(target));

            #line 537 "..\..\..\Prozori\Species.xaml"
                this.btnZ.Click += new System.Windows.RoutedEventHandler(this.AddButton_Click);

            #line default
            #line hidden

            #line 537 "..\..\..\Prozori\Species.xaml"
                this.btnZ.MouseEnter += new System.Windows.Input.MouseEventHandler(this.HoverZ);

            #line default
            #line hidden

            #line 537 "..\..\..\Prozori\Species.xaml"
                this.btnZ.MouseLeave += new System.Windows.Input.MouseEventHandler(this.HoverZLeave);

            #line default
            #line hidden
                return;

            case 63:
                this.btnT = ((System.Windows.Controls.Button)(target));

            #line 542 "..\..\..\Prozori\Species.xaml"
                this.btnT.Click += new System.Windows.RoutedEventHandler(this.Novi_Tip);

            #line default
            #line hidden

            #line 542 "..\..\..\Prozori\Species.xaml"
                this.btnT.MouseEnter += new System.Windows.Input.MouseEventHandler(this.HoverT);

            #line default
            #line hidden

            #line 542 "..\..\..\Prozori\Species.xaml"
                this.btnT.MouseLeave += new System.Windows.Input.MouseEventHandler(this.HoverTLeave);

            #line default
            #line hidden
                return;

            case 64:
                this.btnE = ((System.Windows.Controls.Button)(target));

            #line 550 "..\..\..\Prozori\Species.xaml"
                this.btnE.Click += new System.Windows.RoutedEventHandler(this.Nova_Etiketa);

            #line default
            #line hidden

            #line 550 "..\..\..\Prozori\Species.xaml"
                this.btnE.MouseEnter += new System.Windows.Input.MouseEventHandler(this.HoverE);

            #line default
            #line hidden

            #line 550 "..\..\..\Prozori\Species.xaml"
                this.btnE.MouseLeave += new System.Windows.Input.MouseEventHandler(this.HoverELeave);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
示例#15
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.registeredUsers = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;

            case 2:
                this.dialogList = ((System.Windows.Controls.ListBox)(target));
                return;

            case 3:
                this.userDialogGrid = ((System.Windows.Controls.DataGrid)(target));

            #line 55 "..\..\..\view\DialogsWindow.xaml"
                this.userDialogGrid.Loaded += new System.Windows.RoutedEventHandler(this.loadInUserDialogGrid);

            #line default
            #line hidden

            #line 55 "..\..\..\view\DialogsWindow.xaml"
                this.userDialogGrid.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.selectUserFoChat);

            #line default
            #line hidden
                return;

            case 4:

            #line 61 "..\..\..\view\DialogsWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.goBack);

            #line default
            #line hidden
                return;

            case 5:

            #line 62 "..\..\..\view\DialogsWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.addInDialogs);

            #line default
            #line hidden
                return;

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

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

            #line 64 "..\..\..\view\DialogsWindow.xaml"
                this.sendTextButton.Click += new System.Windows.RoutedEventHandler(this.sendMessage);

            #line default
            #line hidden
                return;

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

            #line 65 "..\..\..\view\DialogsWindow.xaml"
                this.clearDialogButton.Click += new System.Windows.RoutedEventHandler(this.clearDiaolog);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.UpdatePageNameTwo = ((MovieNetWpf.View.UpdatePageTwo)(target));
                return;

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

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

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

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

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

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

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

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

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

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

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

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

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

            case 15:
                this.checkComboBox = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
示例#17
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.items = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));

            #line 23 "..\..\StatisticalInformation.xaml"
                this.items.ItemSelectionChanged += new Xceed.Wpf.Toolkit.Primitives.ItemSelectionChangedEventHandler(this.Items_ItemSelectionChanged);

            #line default
            #line hidden
                return;

            case 2:
                this.type = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 3:

            #line 25 "..\..\StatisticalInformation.xaml"
                ((System.Windows.Controls.ComboBoxItem)(target)).Selected += new System.Windows.RoutedEventHandler(this.trainee_Selected);

            #line default
            #line hidden
                return;

            case 4:

            #line 26 "..\..\StatisticalInformation.xaml"
                ((System.Windows.Controls.ComboBoxItem)(target)).Selected += new System.Windows.RoutedEventHandler(this.tester_Selected);

            #line default
            #line hidden
                return;

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

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

            case 7:
                this.traineeInfo = ((System.Windows.Controls.StackPanel)(target));
                return;

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

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

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

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

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

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

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

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

            case 16:
                this.MaleNumber = ((System.Windows.Controls.Label)(target));
                return;

            case 17:
                this.femaleNumber = ((System.Windows.Controls.Label)(target));
                return;

            case 18:
                this.AutomaticCars = ((System.Windows.Controls.Label)(target));
                return;

            case 19:
                this.ManualCars = ((System.Windows.Controls.Label)(target));
                return;

            case 20:
                this.Heavy_truckCars = ((System.Windows.Controls.Label)(target));
                return;

            case 21:
                this.Medium_truckCars = ((System.Windows.Controls.Label)(target));
                return;

            case 22:
                this.Private_CarCars = ((System.Windows.Controls.Label)(target));
                return;

            case 23:
                this.Two_wheeled_vehiclesCars = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

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

            case 28:
                this.mostCommonCity = ((System.Windows.Controls.Label)(target));
                return;

            case 29:
                this.mostCommonTeacher = ((System.Windows.Controls.Label)(target));
                return;

            case 30:
                this.mostCommonSchool = ((System.Windows.Controls.Label)(target));
                return;

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

            case 32:
                this.testerInfo = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 33:
                this.AverageAgeTester = ((System.Windows.Controls.Label)(target));
                return;

            case 34:
                this.maxAgeTester = ((System.Windows.Controls.Label)(target));
                return;

            case 35:
                this.MinAgeTester = ((System.Windows.Controls.Label)(target));
                return;

            case 36:
                this.YearsOfExperienceAvg = ((System.Windows.Controls.Label)(target));
                return;

            case 37:
                this.YearsOfExperienceMax = ((System.Windows.Controls.Label)(target));
                return;

            case 38:
                this.YearsOfExperienceMin = ((System.Windows.Controls.Label)(target));
                return;

            case 39:
                this.MaxDistanceAvg = ((System.Windows.Controls.Label)(target));
                return;

            case 40:
                this.MaxDistanceMax = ((System.Windows.Controls.Label)(target));
                return;

            case 41:
                this.MaxDistanceMin = ((System.Windows.Controls.Label)(target));
                return;

            case 42:
                this.MaxWeeklyAvg = ((System.Windows.Controls.Label)(target));
                return;

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

            case 44:
                this.MaxWeeklyMin = ((System.Windows.Controls.Label)(target));
                return;

            case 45:
                this.TotalTests = ((System.Windows.Controls.Label)(target));
                return;

            case 46:
                this.MaleNumberTester = ((System.Windows.Controls.Label)(target));
                return;

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

            case 48:
                this.Heavy_truckCarsTester = ((System.Windows.Controls.Label)(target));
                return;

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

            case 50:
                this.Private_CarCarsTester = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

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

            case 55:
                this.totalDidntDoneTester = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
示例#18
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.lbOzn = ((System.Windows.Controls.Label)(target));
                return;

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

            #line 79 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.txtOzn.GotFocus += new System.Windows.RoutedEventHandler(this.TxtOzn_GotFocus);

            #line default
            #line hidden

            #line 79 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.txtOzn.LostFocus += new System.Windows.RoutedEventHandler(this.TxtOzn_LostFocus);

            #line default
            #line hidden
                return;

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

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

            #line 103 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.txtIme.LostFocus += new System.Windows.RoutedEventHandler(this.TxtIme_LostFocus);

            #line default
            #line hidden

            #line 103 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.txtIme.GotFocus += new System.Windows.RoutedEventHandler(this.TxtIme_GotFocus);

            #line default
            #line hidden
                return;

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

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

            #line 124 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.txtKap.GotFocus += new System.Windows.RoutedEventHandler(this.TxtKap_GotFocus);

            #line default
            #line hidden

            #line 124 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.txtKap.LostFocus += new System.Windows.RoutedEventHandler(this.TxtKap_LostFocus);

            #line default
            #line hidden
                return;

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

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

            #line 143 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.txtIcon.GotFocus += new System.Windows.RoutedEventHandler(this.TxtIcon_GotFocus);

            #line default
            #line hidden

            #line 143 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.txtIcon.LostFocus += new System.Windows.RoutedEventHandler(this.TxtIcon_LostFocus);

            #line default
            #line hidden
                return;

            case 9:

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

            #line default
            #line hidden
                return;

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

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

            #line 148 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.checkboxHend.GotFocus += new System.Windows.RoutedEventHandler(this.CheckboxHend_GotFocus);

            #line default
            #line hidden

            #line 148 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.checkboxHend.LostFocus += new System.Windows.RoutedEventHandler(this.CheckboxHend_LostFocus);

            #line default
            #line hidden
                return;

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

            case 13:
                this.checkboxPusenje = ((System.Windows.Controls.CheckBox)(target));

            #line 151 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.checkboxPusenje.GotFocus += new System.Windows.RoutedEventHandler(this.CheckboxPusenje_GotFocus);

            #line default
            #line hidden

            #line 151 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.checkboxPusenje.LostFocus += new System.Windows.RoutedEventHandler(this.CheckboxPusenje_LostFocus);

            #line default
            #line hidden
                return;

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

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

            #line 154 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.checkboxRezervacija.GotFocus += new System.Windows.RoutedEventHandler(this.CheckboxRezervacija_GotFocus);

            #line default
            #line hidden

            #line 154 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.checkboxRezervacija.LostFocus += new System.Windows.RoutedEventHandler(this.CheckboxRezervacija_LostFocus);

            #line default
            #line hidden
                return;

            case 16:
                this.lbTip = ((System.Windows.Controls.Label)(target));
                return;

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

            #line 157 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.cbTip.GotFocus += new System.Windows.RoutedEventHandler(this.CbTip_GotFocus);

            #line default
            #line hidden

            #line 157 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.cbTip.LostFocus += new System.Windows.RoutedEventHandler(this.CbTip_LostFocus);

            #line default
            #line hidden
                return;

            case 18:
                this.lbEtiketa = ((System.Windows.Controls.Label)(target));
                return;

            case 19:
                this.cbEtiketa = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));

            #line 161 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.cbEtiketa.GotFocus += new System.Windows.RoutedEventHandler(this.CbTip_GotFocus);

            #line default
            #line hidden

            #line 161 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.cbEtiketa.LostFocus += new System.Windows.RoutedEventHandler(this.CbTip_LostFocus);

            #line default
            #line hidden
                return;

            case 20:
                this.lbAlkohol = ((System.Windows.Controls.Label)(target));
                return;

            case 21:
                this.cpAlkohol = ((System.Windows.Controls.ComboBox)(target));

            #line 165 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.cpAlkohol.GotFocus += new System.Windows.RoutedEventHandler(this.CpAlkohol_GotFocus);

            #line default
            #line hidden

            #line 165 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.cpAlkohol.LostFocus += new System.Windows.RoutedEventHandler(this.CpAlkohol_LostFocus);

            #line default
            #line hidden
                return;

            case 22:
                this.lbCena = ((System.Windows.Controls.Label)(target));
                return;

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

            #line 170 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.cbCena.GotFocus += new System.Windows.RoutedEventHandler(this.CbCena_GotFocus);

            #line default
            #line hidden

            #line 170 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.cbCena.LostFocus += new System.Windows.RoutedEventHandler(this.CbCena_LostFocus);

            #line default
            #line hidden
                return;

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

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

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

            #line 183 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.txtOpis.GotFocus += new System.Windows.RoutedEventHandler(this.TxtOpis_GotFocus);

            #line default
            #line hidden

            #line 183 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.txtOpis.LostFocus += new System.Windows.RoutedEventHandler(this.TxtOpis_LostFocus);

            #line default
            #line hidden
                return;

            case 27:
                this.imgIcon = ((System.Windows.Controls.Image)(target));
                return;

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

            case 29:
                this.btnPotvrdi = ((System.Windows.Controls.Button)(target));

            #line 198 "..\..\..\AddForms\IzmeniLokal.xaml"
                this.btnPotvrdi.Click += new System.Windows.RoutedEventHandler(this.BtnPotvrdi_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
示例#19
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.lbOzn = ((System.Windows.Controls.Label)(target));
                return;

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

            #line 79 "..\..\..\AddForms\AddLokal.xaml"
                this.txtOzn.GotFocus += new System.Windows.RoutedEventHandler(this.TxtOzn_GotFocus);

            #line default
            #line hidden

            #line 79 "..\..\..\AddForms\AddLokal.xaml"
                this.txtOzn.LostFocus += new System.Windows.RoutedEventHandler(this.TxtOzn_LostFocus);

            #line default
            #line hidden
                return;

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

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

            #line 102 "..\..\..\AddForms\AddLokal.xaml"
                this.txtIme.LostFocus += new System.Windows.RoutedEventHandler(this.TxtIme_LostFocus);

            #line default
            #line hidden

            #line 102 "..\..\..\AddForms\AddLokal.xaml"
                this.txtIme.GotFocus += new System.Windows.RoutedEventHandler(this.TxtIme_GotFocus);

            #line default
            #line hidden
                return;

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

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

            #line 122 "..\..\..\AddForms\AddLokal.xaml"
                this.txtKap.GotFocus += new System.Windows.RoutedEventHandler(this.TxtKap_GotFocus);

            #line default
            #line hidden

            #line 122 "..\..\..\AddForms\AddLokal.xaml"
                this.txtKap.LostFocus += new System.Windows.RoutedEventHandler(this.TxtKap_LostFocus);

            #line default
            #line hidden
                return;

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

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

            #line 141 "..\..\..\AddForms\AddLokal.xaml"
                this.txtIcon.GotFocus += new System.Windows.RoutedEventHandler(this.TxtIcon_GotFocus);

            #line default
            #line hidden

            #line 141 "..\..\..\AddForms\AddLokal.xaml"
                this.txtIcon.LostFocus += new System.Windows.RoutedEventHandler(this.TxtIcon_LostFocus);

            #line default
            #line hidden
                return;

            case 9:

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

            #line default
            #line hidden
                return;

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

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

            #line 146 "..\..\..\AddForms\AddLokal.xaml"
                this.checkboxHend.GotFocus += new System.Windows.RoutedEventHandler(this.CheckboxHend_GotFocus);

            #line default
            #line hidden

            #line 146 "..\..\..\AddForms\AddLokal.xaml"
                this.checkboxHend.LostFocus += new System.Windows.RoutedEventHandler(this.CheckboxHend_LostFocus);

            #line default
            #line hidden
                return;

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

            case 13:
                this.checkboxPusenje = ((System.Windows.Controls.CheckBox)(target));

            #line 149 "..\..\..\AddForms\AddLokal.xaml"
                this.checkboxPusenje.GotFocus += new System.Windows.RoutedEventHandler(this.CheckboxPusenje_GotFocus);

            #line default
            #line hidden

            #line 149 "..\..\..\AddForms\AddLokal.xaml"
                this.checkboxPusenje.LostFocus += new System.Windows.RoutedEventHandler(this.CheckboxPusenje_LostFocus);

            #line default
            #line hidden
                return;

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

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

            #line 152 "..\..\..\AddForms\AddLokal.xaml"
                this.checkboxRezervacija.GotFocus += new System.Windows.RoutedEventHandler(this.CheckboxRezervacija_GotFocus);

            #line default
            #line hidden

            #line 152 "..\..\..\AddForms\AddLokal.xaml"
                this.checkboxRezervacija.LostFocus += new System.Windows.RoutedEventHandler(this.CheckboxRezervacija_LostFocus);

            #line default
            #line hidden
                return;

            case 16:
                this.lbTip = ((System.Windows.Controls.Label)(target));
                return;

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

            #line 155 "..\..\..\AddForms\AddLokal.xaml"
                this.cbTip.GotFocus += new System.Windows.RoutedEventHandler(this.CbTip_GotFocus);

            #line default
            #line hidden

            #line 155 "..\..\..\AddForms\AddLokal.xaml"
                this.cbTip.LostFocus += new System.Windows.RoutedEventHandler(this.CbTip_LostFocus);

            #line default
            #line hidden
                return;

            case 18:
                this.lbEtiketa = ((System.Windows.Controls.Label)(target));
                return;

            case 19:
                this.cbEtiketa = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));

            #line 159 "..\..\..\AddForms\AddLokal.xaml"
                this.cbEtiketa.GotFocus += new System.Windows.RoutedEventHandler(this.CbTip_GotFocus);

            #line default
            #line hidden

            #line 159 "..\..\..\AddForms\AddLokal.xaml"
                this.cbEtiketa.LostFocus += new System.Windows.RoutedEventHandler(this.CbTip_LostFocus);

            #line default
            #line hidden
                return;

            case 20:
                this.lbAlkohol = ((System.Windows.Controls.Label)(target));
                return;

            case 21:
                this.cpAlkohol = ((System.Windows.Controls.ComboBox)(target));

            #line 163 "..\..\..\AddForms\AddLokal.xaml"
                this.cpAlkohol.GotFocus += new System.Windows.RoutedEventHandler(this.CpAlkohol_GotFocus);

            #line default
            #line hidden

            #line 163 "..\..\..\AddForms\AddLokal.xaml"
                this.cpAlkohol.LostFocus += new System.Windows.RoutedEventHandler(this.CpAlkohol_LostFocus);

            #line default
            #line hidden
                return;

            case 22:
                this.lbCena = ((System.Windows.Controls.Label)(target));
                return;

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

            #line 168 "..\..\..\AddForms\AddLokal.xaml"
                this.cbCena.GotFocus += new System.Windows.RoutedEventHandler(this.CbCena_GotFocus);

            #line default
            #line hidden

            #line 168 "..\..\..\AddForms\AddLokal.xaml"
                this.cbCena.LostFocus += new System.Windows.RoutedEventHandler(this.CbCena_LostFocus);

            #line default
            #line hidden
                return;

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

            case 25:
                this.DatumPolje = ((Zadatak.AddForms.CustomWatermarkedDatePicker)(target));
                return;

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

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

            #line 181 "..\..\..\AddForms\AddLokal.xaml"
                this.txtOpis.GotFocus += new System.Windows.RoutedEventHandler(this.TxtOpis_GotFocus);

            #line default
            #line hidden

            #line 181 "..\..\..\AddForms\AddLokal.xaml"
                this.txtOpis.LostFocus += new System.Windows.RoutedEventHandler(this.TxtOpis_LostFocus);

            #line default
            #line hidden
                return;

            case 28:
                this.imgIcon = ((System.Windows.Controls.Image)(target));
                return;

            case 29:

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

            #line default
            #line hidden
                return;

            case 30:

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

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
示例#20
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 13 "..\..\Settings.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CloseCommandHandler);

            #line default
            #line hidden
                return;

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

            #line 18 "..\..\Settings.xaml"
                this.save_btn.Click += new System.Windows.RoutedEventHandler(this.save_btn_Click);

            #line default
            #line hidden
                return;

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

            #line 19 "..\..\Settings.xaml"
                this.cancel_btn.Click += new System.Windows.RoutedEventHandler(this.cancelButton_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.gpsComName = ((System.Windows.Controls.Label)(target));
                return;

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

            case 6:
                this.gpsAutosetOn = ((System.Windows.Controls.CheckBox)(target));
                return;

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

            #line 30 "..\..\Settings.xaml"
                this.comPortList.Initialized += new System.EventHandler(this.comPortList_Initialized);

            #line default
            #line hidden

            #line 30 "..\..\Settings.xaml"
                this.comPortList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.comPortList_SelectionChanged);

            #line default
            #line hidden
                return;

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

            #line 31 "..\..\Settings.xaml"
                this.gpsComBaudSet.Initialized += new System.EventHandler(this.gpsComBaudSet_Initialized);

            #line default
            #line hidden

            #line 31 "..\..\Settings.xaml"
                this.gpsComBaudSet.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.gpsComBaudSet_SelectionChanged);

            #line default
            #line hidden
                return;

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

            #line 33 "..\..\Settings.xaml"
                this.gpsManualSet_on.Click += new System.Windows.RoutedEventHandler(this.gpsManualSet_on_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.altitudeUseFeet = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 11:
                this.altitudeUseMeters = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 12:
                this.speedUseKnots = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 13:
                this.speedUseMperS = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 14:
                this.camIp = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));

            #line 48 "..\..\Settings.xaml"
                this.camIp.Initialized += new System.EventHandler(this.camIp_Initialized);

            #line default
            #line hidden
                return;

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

            case 16:
                this.useDefaultCamIp = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 17:
                this.useManualCamIp = ((System.Windows.Controls.RadioButton)(target));

            #line 54 "..\..\Settings.xaml"
                this.useManualCamIp.Click += new System.Windows.RoutedEventHandler(this.gpsManualSet_on_Click);

            #line default
            #line hidden
                return;

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

            case 19:
                this.manualCamIp = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
示例#21
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.CMBB_TO = ((System.Windows.Controls.ComboBox)(target));

            #line 38 "..\..\..\MainWindow.xaml"
                this.CMBB_TO.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.CMBB_TO_SelectionChanged);

            #line default
            #line hidden
                return;

            case 2:
                this.RB_STRICT = ((System.Windows.Controls.RadioButton)(target));

            #line 40 "..\..\..\MainWindow.xaml"
                this.RB_STRICT.Checked += new System.Windows.RoutedEventHandler(this.RadioButton_Checked_1);

            #line default
            #line hidden
                return;

            case 3:
                this.RB_ALL = ((System.Windows.Controls.RadioButton)(target));

            #line 41 "..\..\..\MainWindow.xaml"
                this.RB_ALL.Checked += new System.Windows.RoutedEventHandler(this.RadioButton_Checked_1);

            #line default
            #line hidden
                return;

            case 4:
                this.RB_DELETE = ((System.Windows.Controls.RadioButton)(target));

            #line 46 "..\..\..\MainWindow.xaml"
                this.RB_DELETE.Checked += new System.Windows.RoutedEventHandler(this.RadioButton_Checked);

            #line default
            #line hidden
                return;

            case 5:

            #line 47 "..\..\..\MainWindow.xaml"
                ((System.Windows.Controls.RadioButton)(target)).Checked += new System.Windows.RoutedEventHandler(this.RadioButton_Checked);

            #line default
            #line hidden
                return;

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

            #line 51 "..\..\..\MainWindow.xaml"
                this.BUT_BROWSEDEST_Copy.Click += new System.Windows.RoutedEventHandler(this.BUT_BROWSEDEST_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.IUD_SAMPLE = ((Xceed.Wpf.Toolkit.IntegerUpDown)(target));

            #line 55 "..\..\..\MainWindow.xaml"
                this.IUD_SAMPLE.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.IUD_SAMPLE_CHANGED);

            #line default
            #line hidden
                return;

            case 8:
                this.IUD_BITRATE = ((Xceed.Wpf.Toolkit.IntegerUpDown)(target));

            #line 56 "..\..\..\MainWindow.xaml"
                this.IUD_BITRATE.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.IUD_BITRATE_CHANGED);

            #line default
            #line hidden
                return;

            case 9:
                this.CCB_FROM = ((Xceed.Wpf.Toolkit.CheckComboBox)(target));

            #line 64 "..\..\..\MainWindow.xaml"
                this.CCB_FROM.ItemSelectionChanged += new Xceed.Wpf.Toolkit.Primitives.ItemSelectionChangedEventHandler(this.CCB_FROM_ItemSelectionChanged);

            #line default
            #line hidden
                return;

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

            #line 66 "..\..\..\MainWindow.xaml"
                this.BUT_BROWSEPRIMARYDIRECTORY.Click += new System.Windows.RoutedEventHandler(this.BUT_BROWSEPRIMARYDIRECTORY_Click);

            #line default
            #line hidden
                return;

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

            #line 67 "..\..\..\MainWindow.xaml"
                this.TXTB_PRIMARYDIRECTORY.KeyDown += new System.Windows.Input.KeyEventHandler(this.TXTB_PRIMARYDIRECTORY_KeyDown);

            #line default
            #line hidden

            #line 67 "..\..\..\MainWindow.xaml"
                this.TXTB_PRIMARYDIRECTORY.GotFocus += new System.Windows.RoutedEventHandler(this.TXTB_GENERAL_GotFocus);

            #line default
            #line hidden
                return;

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

            #line 77 "..\..\..\MainWindow.xaml"
                this.BUT_REFRESH.Click += new System.Windows.RoutedEventHandler(this.BUT_REFRESH_Click);

            #line default
            #line hidden
                return;

            case 13:

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

            #line default
            #line hidden
                return;

            case 14:
                this.BUT_DISPLAYLESS = ((System.Windows.Controls.Button)(target));

            #line 79 "..\..\..\MainWindow.xaml"
                this.BUT_DISPLAYLESS.Click += new System.Windows.RoutedEventHandler(this.BUT_DISPLAYLESS_Click);

            #line default
            #line hidden
                return;

            case 15:
                this.BUT_DISPLAYMORE = ((System.Windows.Controls.Button)(target));

            #line 81 "..\..\..\MainWindow.xaml"
                this.BUT_DISPLAYMORE.Click += new System.Windows.RoutedEventHandler(this.BUT_DISPLAYMORE_Click);

            #line default
            #line hidden
                return;

            case 16:
                this.TV_FROM = ((System.Windows.Controls.TreeView)(target));
                return;

            case 17:
                this.LB_CHECK = ((System.Windows.Controls.ListBox)(target));
                return;

            case 18:
                this.LD_FROM = ((BUAFC_UI.LoadingAnimation)(target));
                return;

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

            #line 87 "..\..\..\MainWindow.xaml"
                this.TXT_DEST.KeyDown += new System.Windows.Input.KeyEventHandler(this.TXTB_DEST_KeyDown);

            #line default
            #line hidden

            #line 87 "..\..\..\MainWindow.xaml"
                this.TXT_DEST.GotFocus += new System.Windows.RoutedEventHandler(this.TXTB_GENERAL_GotFocus);

            #line default
            #line hidden
                return;

            case 20:
                this.CB_DEST = ((System.Windows.Controls.ComboBox)(target));

            #line 96 "..\..\..\MainWindow.xaml"
                this.CB_DEST.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.CB_DEST_SelectionChanged);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }