Example #1
0
 public Result()
 {
     InitializeComponent();
     // 불러오는 코드
     list= (System.Windows.Controls.ListView)this.FindName("listBox");
     wb = (System.Windows.Controls.WebBrowser)this.FindName("browser");
 }
Example #2
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 2:
     this.listViewTrackers = ((System.Windows.Controls.ListView)(target));
     return;
     case 3:
     
     #line 59 "..\..\..\..\..\Controls\UserControls\ListViewTrackers.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemlistViewTrackers_checkAll_Click);
     
     #line default
     #line hidden
     return;
     case 4:
     
     #line 64 "..\..\..\..\..\Controls\UserControls\ListViewTrackers.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemlistViewTrackers_uncheckAll_Click);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
Example #3
0
		static void InitializeCommandShortcuts(ListView listView) {
			listView.AddCommandBinding(ApplicationCommands.Copy, new CallStackCtxMenuCommandProxy(new CopyCallStackCtxMenuCommand()));
			listView.AddCommandBinding(new CallStackCtxMenuCommandProxy(new RunToCursorCallStackCtxMenuCommand()), ModifierKeys.Control, Key.F10);
			listView.InputBindings.Add(new KeyBinding(new CallStackCtxMenuCommandProxy(new GoToSourceCallStackCtxMenuCommand()), Key.Enter, ModifierKeys.None));
			listView.InputBindings.Add(new KeyBinding(new CallStackCtxMenuCommandProxy(new GoToSourceNewTabCallStackCtxMenuCommand()), Key.Enter, ModifierKeys.Control));
			listView.InputBindings.Add(new KeyBinding(new CallStackCtxMenuCommandProxy(new GoToSourceNewTabCallStackCtxMenuCommand()), Key.Enter, ModifierKeys.Shift));
		}
Example #4
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.ProgramsMenuAppsView = ((System.Windows.Controls.ListView)(target));
     return;
     case 2:
     this.InstalledAppsView = ((System.Windows.Controls.ListView)(target));
     return;
     case 3:
     
     #line 106 "..\..\AppGrabberUI.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SkipWizard);
     
     #line default
     #line hidden
     return;
     case 4:
     
     #line 112 "..\..\AppGrabberUI.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
        private void AddOption(ListView listview, string optionName, object obj, string propertyName)
        {
            ConfigClasses.EquipmentConfig config = Manager.ConfigManager.Instance.Config;

            if (config.OptionSettingList == null)
                config.OptionSettingList = new FALibrary.Utility.SerializableDictionary<string, ConfigClasses.OptionSetting>();

            if (config.OptionSettingList.ContainsKey(propertyName) == false)
                config.OptionSettingList.Add(propertyName, new ConfigClasses.OptionSetting());

            ConfigClasses.OptionSetting optionSetting = config.OptionSettingList[propertyName];
            optionSetting.Source = obj;
            optionSetting.Descriptoin = optionName;

            CheckBox checkBoxUse = CreateCheckBox(obj, propertyName);
            CheckBox checkBoxEnabledValueChecking = CreateCheckBox(optionSetting, "EnabledValueChecking");
            CheckBox checkBoxCorrectValue = CreateCheckBox(optionSetting, "CorrectValue");

            listview.Items.Add(new
            {
                CheckBoxUse = checkBoxUse,
                Name = optionName,
                ValueChecking = checkBoxEnabledValueChecking,
                CorrectValue = checkBoxCorrectValue,
                Self = this
            });

            OptionManager.Instance.SetOptionList();
        }
Example #6
0
        private void PrepareWeekGrid()
        {

            for (int i = 0; i < 4; i++)//Creating listviews where we will display Timesatmps for rows
            {
                ListView list = new ListView();
                //Little bit of tinkering with properties to get desired result;
                list.SetValue(ScrollViewer.HorizontalScrollBarVisibilityProperty, ScrollBarVisibility.Disabled);
                Label timelabel = new Label();//We will display timestamp on this label
                timelabel.Content = TimePeriodToString((timeperiod)i);//setting
                list.Items.Add(timelabel);//adding label to listview
                TimeStamps.Children.Add(list);//Adding listview to grid;
            }

            Label[] weekDayLabels = new Label[7];//Labels for dispaly weekday name
            List<DayOfWeek> customday = new List<DayOfWeek>();// reshuffling weekady enum to set monday as first day of week
            foreach (DayOfWeek day in Enum.GetValues(typeof(DayOfWeek))
                              .OfType<DayOfWeek>()
                              .ToList()//monday is second day by default
                              .Skip(1))//so we skip sunday 
            {
                customday.Add(day);//adding 
            }
            customday.Add(DayOfWeek.Sunday);//and add sunday as last

            for (int i = 0; i < weekDayLabels.Length; i++)//Placing all the labels at grid;
            {
                weekDayLabels[i] = new Label();
                weekDayLabels[i].Background = Brushes.LightBlue;
                weekDayLabels[i].Content = customday.ElementAt(i).ToString();//With appropriate day name;(This will correspond to actual date-weekday)
                DayLabels.Children.Add(weekDayLabels[i]);

            }
        }
Example #7
0
 public static void FocusListView(ListView view)
 {
     if (!view.IsVisible)
         view.IsVisibleChanged += view_IsVisibleChanged;
     else
         FocusListViewInternal(view);
 }
Example #8
0
 public ListViewSorter(ListView listView, DefaultHeaderSortDirections defaultHeaderSortDirections, DataTemplate upArrow, DataTemplate downArrow)
 {
     this.listView = listView;
     this.defaultHeaderSortDirections = defaultHeaderSortDirections;
     this.upArrow = upArrow;
     this.downArrow = downArrow;
 }
        public override void OnApplyTemplate()
        {
            base.OnApplyTemplate();

            _ItemsView = (ListView)GetTemplateChild("PART_ItemsView");
            _ItemsView.SelectionMode = SelectionMode.Multiple;
        }
        public ItemContainerGenerator_ItemsChangedHander(ListView listView, Action<ListView> action)
        {
            this.ListViewReference = listView;
            this.Action = action;

            listView.ItemContainerGenerator.ItemsChanged += OnItemsChanged;
        }
Example #11
0
 public ImagePage(ListView parentList)
 {
     _parentList = parentList;
     InitializeComponent();
     UpdateImageFromParent();
     _parentList.SelectionChanged += _parentList_SelectionChanged;
 }
        public ListSystemParameters()
        {
            Title = "List System Parameters";

            ListView lstvue = new ListView();
            Content = lstvue;

            GridView grdvue = new GridView();
            lstvue.View = grdvue;

            GridViewColumn col = new GridViewColumn();
            col.Header = "Property Name";
            col.Width = 200;
            col.DisplayMemberBinding = new Binding("Name");
            grdvue.Columns.Add(col);

            col = new GridViewColumn();
            col.Header = "Value";
            col.Width = 200;
            col.DisplayMemberBinding = new Binding("Value");
            grdvue.Columns.Add(col);

            PropertyInfo[] props = typeof(SystemParameters).GetProperties();
            foreach (PropertyInfo prop in props)
            {
                if (prop.PropertyType != typeof(ResourceKey))
                {
                    SystemParam sysparam = new SystemParam();
                    sysparam.Name = prop.Name;
                    sysparam.Value = prop.GetValue(null, null);
                    lstvue.Items.Add(sysparam);
                }
            }
        }
Example #13
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     
     #line 13 "..\..\MainWindow.xaml"
     ((System.Windows.Controls.TreeView)(target)).SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler<object>(this.SelectedDirectoryChanged);
     
     #line default
     #line hidden
     return;
     case 2:
     this.listViewFiles = ((System.Windows.Controls.ListView)(target));
     
     #line 22 "..\..\MainWindow.xaml"
     this.listViewFiles.ContextMenuOpening += new System.Windows.Controls.ContextMenuEventHandler(this.listViewFiles_ContextMenuOpening);
     
     #line default
     #line hidden
     
     #line 22 "..\..\MainWindow.xaml"
     this.listViewFiles.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.listViewFiles_MouseDown);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
Example #14
0
        //adding a game to ListView
        public void addGameToView(ListView listView)
        {
            //open a FileDialog
            OpenFileDialog ofd = new OpenFileDialog();
            ofd.Filter = "exe files (*.exe)|*.exe";

            if (ofd.ShowDialog() == true)
            {

                //creating an Item an fill it with needed values
                var extractedIcon = System.Drawing.Icon.ExtractAssociatedIcon(ofd.FileName);
                var bmSrc = Imaging.CreateBitmapSourceFromHIcon(
                            extractedIcon.Handle,
                            Int32Rect.Empty,
                            System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions());
                extractedIcon.Dispose();

                Item item = new Item(bmSrc, Path.GetFileNameWithoutExtension(ofd.FileName), ofd.FileName);

                //adding item to ListView
                listView.Items.Add(item);

                //saving Item into settings.txt
                using (StreamWriter file =
                    new StreamWriter("settings.txt", true))
                {
                    file.WriteLine(item.game);
                    file.WriteLine(item.path);
                }
            }

            //setting ListView Width to needed Width
            double remainingSpace = listView.ActualWidth;
            (listView.View as GridView).Columns[1].Width = Math.Ceiling(remainingSpace);
        }
Example #15
0
        //checks if the safe file settings.txt exists.
        //if it exists, viewing content in the listview
        //if not, creating a new one
        public void checkFile(ListView listView)
        {
            try
            {
                //getting the text out of the .txt
                string[] lines = File.ReadAllLines("settings.txt");
                for (int i = 0; i < lines.Length;)
                {
                    //fill the Item with needed values
                    var extractedIcon = System.Drawing.Icon.ExtractAssociatedIcon(lines[i + 1]);

                    var bmSrc = Imaging.CreateBitmapSourceFromHIcon(
                            extractedIcon.Handle,
                            Int32Rect.Empty,
                            System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions());
                    extractedIcon.Dispose();

                    Item item = new Item(bmSrc, lines[i], lines[i+1]);

                    //adding Item to ListView
                    listView.Items.Add(item);

                    i += 2;
                }
            }
            //if the file does not exist, creating a new one
            catch (FileNotFoundException e)
            {
                File.Create("settings.txt");
            }
        }
Example #16
0
        public void addGameToView(ListView listView)
        {
            OpenFileDialog ofd = new OpenFileDialog();
            ofd.Filter = "exe files (*.exe)|*.exe";

            if (ofd.ShowDialog() == true)
            {
                Item item = new Item();

                var extractedIcon = System.Drawing.Icon.ExtractAssociatedIcon(ofd.FileName);
                var bmSrc = Imaging.CreateBitmapSourceFromHIcon(
                            extractedIcon.Handle,
                            Int32Rect.Empty,
                            System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions());
                extractedIcon.Dispose();

                item.icon = bmSrc;
                item.game = Path.GetFileNameWithoutExtension(ofd.FileName);
                item.path = ofd.FileName;
                listView.Items.Add(item);

                using (StreamWriter file =
                    new StreamWriter("settings.txt", true))
                {
                    file.WriteLine(item.game);
                    file.WriteLine(item.path);
                }
            }

            double remainingSpace = listView.ActualWidth;
            (listView.View as GridView).Columns[1].Width = Math.Ceiling(remainingSpace);
        }
Example #17
0
        public void checkFile(ListView listView)
        {
            try
            {

                string[] lines = File.ReadAllLines("settings.txt");
                for (int i = 0; i < lines.Length;)
                {
                    Item item = new Item();
                    item.game = lines[i];
                    item.path = lines[i + 1];

                    var extractedIcon = System.Drawing.Icon.ExtractAssociatedIcon(item.path);

                    var bmSrc = Imaging.CreateBitmapSourceFromHIcon(
                            extractedIcon.Handle,
                            Int32Rect.Empty,
                            System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions());
                    extractedIcon.Dispose();

                    item.icon = bmSrc;

                    listView.Items.Add(item);

                    i += 2;
                }
            }
            catch (FileNotFoundException e)
            {
                File.Create("settings.txt");
            }
        }
 public Panel GetConnectedPanel(ListView item)
 {
     foreach (var x in panels)
         if (x.PanelsListView.Equals(item))
             return x;
     return null;
 }
 public void Handle(ListView list, String key)
 {
     if (list.View is GridView)
     {
         Handle(((GridView)list.View).Columns, key);
     }
 }
 public Panel AddNewPanel()
 {
     ListView newLV = new ListView();
     ComboBox newCB = new ComboBox();
     panels.Add(new Panel(newCB, newLV));
     newLV.Style = Resources["PanelListView"] as Style;
     newLV.ItemContainerStyle = Resources["PanelListViewItem"] as Style; ;
     GridView columns = new GridView();
     columns.Columns.Add(AddGridViewColumn( "Name", "Name"));
     columns.Columns.Add(AddGridViewColumn( "Type", "Extension"));
     columns.Columns.Add(AddGridViewColumn( "Size", "Length"));
     columns.Columns.Add(AddGridViewColumn( "Date of creation", "CreationTime"));
     newLV.View = columns;
     newLV.Loaded += PanelInitialized;
     newCB.Style = Resources["DrivesComboBox"] as Style;
     ColumnDefinition newColumn = new ColumnDefinition();
     newColumn.Width = new GridLength(1, GridUnitType.Star);
     PanelsGrid.ColumnDefinitions.Add(newColumn);
     newLV.SetValue(Grid.RowProperty, 1);
     newLV.SetValue(Grid.ColumnProperty, numOfPanels);
     newCB.SetValue(Grid.RowProperty, 0);
     newCB.SetValue(Grid.ColumnProperty, numOfPanels);
     PanelsGrid.Children.Add(newLV);
     PanelsGrid.Children.Add(newCB);
     AddDrivesInComboBox(newCB);
     newCB.SelectionChanged += DiskChanged;
     return panels[numOfPanels++];
 }
Example #21
0
 public Log(ListView list, TextBlock block)
 {
     _listBox = list;
     _block = block;
     Format = LogDataFormat.Decimal;
     _listBox.ItemsSource = _filteredloglist;
 }
Example #22
0
        public override void OnApplyTemplate()
        {
            base.OnApplyTemplate();

            view = GetTemplateChild("PART_GridDisplay") as ListView;
            view.ItemsSource = _weeks;
        }
Example #23
0
 public ImageListView(ListView lstImage)
 {
     // TODO: Complete member initialization
       this.lstImage = lstImage;
       this.initImageList();
       spyer.ImageListView = this;
 }
        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);
        }
        private void DeleteListViewSelectedItem(ListView lv)
        {
            object obj = lv.SelectedItem;

            if (obj is NwdPortableDeviceFolder)
            {
                MessageBox.Show("folder delete not supported yet");
            }

            if (obj is NwdPortableDeviceFile)
            {
                NwdPortableDeviceFile pdf = (NwdPortableDeviceFile)obj;

                if (MessageBox.Show("Are you sure you want to delete " + pdf.Name,
                                   "Confirm Deletion",
                                   MessageBoxButton.YesNo) == MessageBoxResult.Yes)
                {
                    _currentDevice.DeleteFile(pdf);

                    MessageBox.Show("file deleted");
                }

            }

            if (obj == null)
            {
                MessageBox.Show("null selection");
            }
        }
 public ImageWindow(ListView view)
 {
     parentView = view;
     InitializeComponent();
     image.Source = (parentView.SelectedItem as Image).Source;
     parentView.SelectionChanged += View_SelectionChanged;
 }
Example #27
0
        public PerfMarginPanel()
        {
            Logger.SetLogger(AggregateLogger.AddOrReplace(logger, Logger.GetLogger(), l => l is PerfEventActivityLogger));

            // grid
            mainGrid = new Grid();
            mainGrid.ColumnDefinitions.Add(new ColumnDefinition());
            mainGrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto });
            mainGrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto });

            // set diagnostic list
            this.mainListView = CreateContent(new ActivityLevel[] { model.RootNode }.Concat(model.RootNode.Children), useWrapPanel: true);
            this.mainListView.SelectionChanged += OnPerfItemsListSelectionChanged;
            Grid.SetRow(this.mainListView, 0);

            mainGrid.Children.Add(this.mainListView);

            this.Content = mainGrid;

            this.timer = new DispatcherTimer(TimeSpan.FromMilliseconds(500), DispatcherPriority.Background, UpdateUI, this.Dispatcher);
            StartTimer();

            model.RootNode.IsActiveChanged += (s, e) =>
            {
                if (this.stopTimer)
                {
                    StartTimer();
                }
            };
        }
Example #28
0
        protected override void OnInitialized(EventArgs e)
        {
            base.OnInitialized(e);


            _errorList = Content as ListView;
        }
Example #29
0
File: LRM.cs Project: sopel30/tsst2
 public LRM(string domain, ListView view)
 {
     this.domain = domain;
     resources = new Dictionary<string, SNPLink>();
     linkConnections = new Dictionary<string, Topology.Link>();
     this.links = view;
 }
 public MainWindow()
 {
     InitializeComponent();
     AddNewPanel();
     AddNewPanel();
     ActiveListView = panels[0].PanelsListView;
 }
Example #31
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

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

            #line default
            #line hidden

            #line 8 "..\..\MainWindow.xaml"
                ((LabyrinthGame.MainWindow)(target)).Activated += new System.EventHandler(this.Window_Activated);

            #line default
            #line hidden

            #line 8 "..\..\MainWindow.xaml"
                ((LabyrinthGame.MainWindow)(target)).Deactivated += new System.EventHandler(this.Window_Deactivated);

            #line default
            #line hidden
                return;

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

            case 3:
                this.menuStackPanel = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 4:
                this.playerNameDockPanel = ((System.Windows.Controls.DockPanel)(target));
                return;

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

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

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

            #line 15 "..\..\MainWindow.xaml"
                this.newGameButton.Click += new System.Windows.RoutedEventHandler(this.newGameButton_Click);

            #line default
            #line hidden
                return;

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

            #line 16 "..\..\MainWindow.xaml"
                this.resultsButton.Click += new System.Windows.RoutedEventHandler(this.resultsButton_Click);

            #line default
            #line hidden
                return;

            case 9:
                this.resStackPanel = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 10:
                this.resultsMenuDockPanel = ((System.Windows.Controls.DockPanel)(target));
                return;

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

            #line 20 "..\..\MainWindow.xaml"
                this.backButton.Click += new System.Windows.RoutedEventHandler(this.backButton_Click);

            #line default
            #line hidden
                return;

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

            #line 21 "..\..\MainWindow.xaml"
                this.clearButton.Click += new System.Windows.RoutedEventHandler(this.clearButton_Click);

            #line default
            #line hidden
                return;

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

            case 14:
                this.resultsListView = ((System.Windows.Controls.ListView)(target));
                return;

            case 15:
                this.gameStackPanel = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 16:
                this.gameMeunuDockPanel = ((System.Windows.Controls.DockPanel)(target));
                return;

            case 17:
                this.toMenuButton = ((System.Windows.Controls.Button)(target));

            #line 59 "..\..\MainWindow.xaml"
                this.toMenuButton.Click += new System.Windows.RoutedEventHandler(this.toMenuButton_Click);

            #line default
            #line hidden
                return;

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

            #line 60 "..\..\MainWindow.xaml"
                this.anewButton.Click += new System.Windows.RoutedEventHandler(this.anewButton_Click);

            #line default
            #line hidden
                return;

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

            case 20:
                this.statDockPanel = ((System.Windows.Controls.DockPanel)(target));
                return;

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

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

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

            case 24:
                this.gameCanvas = ((System.Windows.Controls.Canvas)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.LeaderboardBox = ((System.Windows.Controls.ListView)(target));

            #line 23 "..\..\MainWindow.xaml"
                this.LeaderboardBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.LeaderboardBox_SelectionChanged);

            #line default
            #line hidden
                return;

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

            #line 69 "..\..\MainWindow.xaml"
                this.B_SignUp.Click += new System.Windows.RoutedEventHandler(this.B_SignUp_Click);

            #line default
            #line hidden
                return;

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

            #line 70 "..\..\MainWindow.xaml"
                this.B_Generate.Click += new System.Windows.RoutedEventHandler(this.B_Generate_Click);

            #line default
            #line hidden
                return;

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

            #line 75 "..\..\MainWindow.xaml"
                this.TextBox_Team2.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBox_Team2_TextChanged);

            #line default
            #line hidden
                return;

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

            #line 76 "..\..\MainWindow.xaml"
                this.TextBox_Team1.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBox_Team1_TextChanged);

            #line default
            #line hidden
                return;

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

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

            #line 87 "..\..\MainWindow.xaml"
                this.B_Submitt.Click += new System.Windows.RoutedEventHandler(this.B_Submitt_Click);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

            case 14:
                this.PlacingInRound8 = ((System.Windows.Controls.TextBox)(target));
                return;

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

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

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

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

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

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

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

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

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

            #line 109 "..\..\MainWindow.xaml"
                this.B_R1.Click += new System.Windows.RoutedEventHandler(this.B_R1_Click);

            #line default
            #line hidden
                return;

            case 24:
                this.B_R5 = ((System.Windows.Controls.Button)(target));
                return;

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

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

            #line 112 "..\..\MainWindow.xaml"
                this.B_R3.Click += new System.Windows.RoutedEventHandler(this.B_R3_Click);

            #line default
            #line hidden
                return;

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

            #line 113 "..\..\MainWindow.xaml"
                this.B_R2.Click += new System.Windows.RoutedEventHandler(this.B_R2_Click);

            #line default
            #line hidden
                return;

            case 28:
                this.RadioButton_PlayersNumber_8 = ((System.Windows.Controls.RadioButton)(target));

            #line 116 "..\..\MainWindow.xaml"
                this.RadioButton_PlayersNumber_8.Checked += new System.Windows.RoutedEventHandler(this.RadioButton_PlayersNumber_8_Checked);

            #line default
            #line hidden
                return;

            case 29:
                this.RadioButton_PlayersNumber_16 = ((System.Windows.Controls.RadioButton)(target));

            #line 117 "..\..\MainWindow.xaml"
                this.RadioButton_PlayersNumber_16.Checked += new System.Windows.RoutedEventHandler(this.RadioButton_PlayersNumber_16_Checked);

            #line default
            #line hidden
                return;

            case 30:
                this.RadioButton_PlayersNumber_24 = ((System.Windows.Controls.RadioButton)(target));

            #line 118 "..\..\MainWindow.xaml"
                this.RadioButton_PlayersNumber_24.Checked += new System.Windows.RoutedEventHandler(this.RadioButton_PlayersNumber_24_Checked);

            #line default
            #line hidden
                return;

            case 31:
                this.RadioButton_PlayersNumber_128 = ((System.Windows.Controls.RadioButton)(target));

            #line 119 "..\..\MainWindow.xaml"
                this.RadioButton_PlayersNumber_128.Checked += new System.Windows.RoutedEventHandler(this.RadioButton_PlayersNumber_128_Checked);

            #line default
            #line hidden
                return;

            case 32:
                this.DiscordName1 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 33:
                this.Nickname1 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 34:
                this.TextBox_Team4 = ((System.Windows.Controls.TextBox)(target));

            #line 122 "..\..\MainWindow.xaml"
                this.TextBox_Team4.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBox_Team2_TextChanged);

            #line default
            #line hidden
                return;

            case 35:
                this.TextBox_Team3 = ((System.Windows.Controls.TextBox)(target));

            #line 123 "..\..\MainWindow.xaml"
                this.TextBox_Team3.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBox_Team3_TextChanged);

            #line default
            #line hidden
                return;

            case 36:
                this.PlacingInRound17 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 37:
                this.PlacingInRound18 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 38:
                this.PlacingInRound19 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 39:
                this.PlacingInRound20 = ((System.Windows.Controls.TextBox)(target));
                return;

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

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

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

            case 43:
                this.PlacingInRound24 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 44:
                this.PlacingInRound25 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 45:
                this.PlacingInRound26 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 46:
                this.PlacingInRound27 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 47:
                this.PlacingInRound28 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 48:
                this.PlacingInRound29 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 49:
                this.PlacingInRound30 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 50:
                this.PlacingInRound31 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 51:
                this.PlacingInRound32 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 52:
                this.OutputNames_Lobby3 = ((System.Windows.Controls.ListView)(target));
                return;

            case 53:
                this.OutputNames_Lobby4 = ((System.Windows.Controls.ListView)(target));
                return;

            case 54:
                this.OutputNames_Lobby2 = ((System.Windows.Controls.ListView)(target));
                return;

            case 55:
                this.OutputNames_Lobby1 = ((System.Windows.Controls.ListView)(target));
                return;

            case 56:
                this.B_R5_Copy = ((System.Windows.Controls.Button)(target));

            #line 216 "..\..\MainWindow.xaml"
                this.B_R5_Copy.Click += new System.Windows.RoutedEventHandler(this.B_R5_Copy_Click);

            #line default
            #line hidden
                return;

            case 57:
                this.B_R5_Copy1 = ((System.Windows.Controls.Button)(target));
                return;

            case 58:
                this.B_R5_Copy2 = ((System.Windows.Controls.Button)(target));

            #line 218 "..\..\MainWindow.xaml"
                this.B_R5_Copy2.Click += new System.Windows.RoutedEventHandler(this.B_R5_Copy2_Click);

            #line default
            #line hidden
                return;

            case 59:
                this.B_R5_Copy3 = ((System.Windows.Controls.Button)(target));

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

            #line default
            #line hidden
                return;

            case 60:
                this.B_R5_Copy4 = ((System.Windows.Controls.Button)(target));

            #line 220 "..\..\MainWindow.xaml"
                this.B_R5_Copy4.Click += new System.Windows.RoutedEventHandler(this.B_R5_Copy_Click);

            #line default
            #line hidden
                return;

            case 61:
                this.B_R5_Copy5 = ((System.Windows.Controls.Button)(target));

            #line 221 "..\..\MainWindow.xaml"
                this.B_R5_Copy5.Click += new System.Windows.RoutedEventHandler(this.B_R5_Copy5_Click);

            #line default
            #line hidden
                return;

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

            #line 222 "..\..\MainWindow.xaml"
                this.B_R5_Copy6.Click += new System.Windows.RoutedEventHandler(this.B_R5_Copy2_Click);

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

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

            #line default
            #line hidden
                return;

            case 2:
                this.ugrid = ((System.Windows.Controls.Primitives.UniformGrid)(target));
                return;

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

            #line 18 "..\..\..\Views\MainWindow.xaml"
                this.btnMain.Click += new System.Windows.RoutedEventHandler(this.btnMain_Click);

            #line default
            #line hidden
                return;

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

            case 5:
                this.Lview = ((System.Windows.Controls.ListView)(target));
                return;

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

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

            #line 28 "..\..\..\Views\MainWindow.xaml"
                this.btnSend.Click += new System.Windows.RoutedEventHandler(this.btnSend_Click);

            #line default
            #line hidden
                return;

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

            #line 32 "..\..\..\Views\MainWindow.xaml"
                this.btnPvP.Click += new System.Windows.RoutedEventHandler(this.btnPvP_Click);

            #line default
            #line hidden
                return;

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

            #line 33 "..\..\..\Views\MainWindow.xaml"
                this.btnPvC.Click += new System.Windows.RoutedEventHandler(this.btnPvC_Click);

            #line default
            #line hidden
                return;

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

            #line 34 "..\..\..\Views\MainWindow.xaml"
                this.btnComOnline.Click += new System.Windows.RoutedEventHandler(this.btnComOnline_Click);

            #line default
            #line hidden
                return;

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

            #line 37 "..\..\..\Views\MainWindow.xaml"
                this.btnExit.Click += new System.Windows.RoutedEventHandler(this.btnExit_Click);

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

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

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

            case 4:
                this.st_pnl = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 5:
                this.toggle_Btn = ((System.Windows.Controls.Primitives.ToggleButton)(target));

            #line 76 "..\..\mainPage.xaml"
                this.toggle_Btn.Unchecked += new System.Windows.RoutedEventHandler(this.Tg_Btn_Unchecked);

            #line default
            #line hidden

            #line 76 "..\..\mainPage.xaml"
                this.toggle_Btn.Checked += new System.Windows.RoutedEventHandler(this.Tg_Btn_Checked);

            #line default
            #line hidden
                return;

            case 6:
                this.HideStackPanel = ((System.Windows.Media.Animation.Storyboard)(target));
                return;

            case 7:
                this.ShowStackPanel = ((System.Windows.Media.Animation.Storyboard)(target));
                return;

            case 8:
                this.LV = ((System.Windows.Controls.ListView)(target));
                return;

            case 9:
                this.home = ((System.Windows.Controls.ListViewItem)(target));

            #line 134 "..\..\mainPage.xaml"
                this.home.MouseEnter += new System.Windows.Input.MouseEventHandler(this.ListViewItem_MouseEnter);

            #line default
            #line hidden

            #line 134 "..\..\mainPage.xaml"
                this.home.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden

            #line 134 "..\..\mainPage.xaml"
                this.home.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden
                return;

            case 10:
                this.tt_home = ((System.Windows.Controls.ToolTip)(target));
                return;

            case 11:
                this.year = ((System.Windows.Controls.ListViewItem)(target));

            #line 153 "..\..\mainPage.xaml"
                this.year.MouseEnter += new System.Windows.Input.MouseEventHandler(this.ListViewItem_MouseEnter);

            #line default
            #line hidden

            #line 153 "..\..\mainPage.xaml"
                this.year.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden

            #line 153 "..\..\mainPage.xaml"
                this.year.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden
                return;

            case 12:
                this.tt_year = ((System.Windows.Controls.ToolTip)(target));
                return;

            case 13:
                this.month = ((System.Windows.Controls.ListViewItem)(target));

            #line 173 "..\..\mainPage.xaml"
                this.month.MouseEnter += new System.Windows.Input.MouseEventHandler(this.ListViewItem_MouseEnter);

            #line default
            #line hidden

            #line 173 "..\..\mainPage.xaml"
                this.month.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden

            #line 173 "..\..\mainPage.xaml"
                this.month.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden
                return;

            case 14:
                this.tt_month = ((System.Windows.Controls.ToolTip)(target));
                return;

            case 15:
                this.week = ((System.Windows.Controls.ListViewItem)(target));

            #line 192 "..\..\mainPage.xaml"
                this.week.MouseEnter += new System.Windows.Input.MouseEventHandler(this.ListViewItem_MouseEnter);

            #line default
            #line hidden

            #line 192 "..\..\mainPage.xaml"
                this.week.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden

            #line 192 "..\..\mainPage.xaml"
                this.week.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden
                return;

            case 16:
                this.tt_week = ((System.Windows.Controls.ToolTip)(target));
                return;

            case 17:
                this.day = ((System.Windows.Controls.ListViewItem)(target));

            #line 211 "..\..\mainPage.xaml"
                this.day.MouseEnter += new System.Windows.Input.MouseEventHandler(this.ListViewItem_MouseEnter);

            #line default
            #line hidden

            #line 211 "..\..\mainPage.xaml"
                this.day.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden

            #line 211 "..\..\mainPage.xaml"
                this.day.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden
                return;

            case 18:
                this.tt_day = ((System.Windows.Controls.ToolTip)(target));
                return;

            case 19:
                this.passwords = ((System.Windows.Controls.ListViewItem)(target));

            #line 230 "..\..\mainPage.xaml"
                this.passwords.MouseEnter += new System.Windows.Input.MouseEventHandler(this.ListViewItem_MouseEnter);

            #line default
            #line hidden

            #line 230 "..\..\mainPage.xaml"
                this.passwords.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden

            #line 230 "..\..\mainPage.xaml"
                this.passwords.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDown);

            #line default
            #line hidden
                return;

            case 20:
                this.tt_passwords = ((System.Windows.Controls.ToolTip)(target));
                return;

            case 21:
                this.switchMode = ((yourPlanner.ToggleSwitchMode)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.MainEventsGrid = ((System.Windows.Controls.Grid)(target));
                return;

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

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

            case 4:
                this.scrollViewer = ((System.Windows.Controls.ScrollViewer)(target));
                return;

            case 5:
                this.EventsDataGrid = ((System.Windows.Controls.DataGrid)(target));
                return;

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

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

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

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

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

            case 11:
                this.NewsGrid = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 13:
                this.genNewsList = ((System.Windows.Controls.ListView)(target));
                return;

            case 14:

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

            #line default
            #line hidden
                return;

            case 15:

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

            #line default
            #line hidden
                return;

            case 16:

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

            #line default
            #line hidden
                return;

            case 17:

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

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #36
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.Main_Menu = ((System.Windows.Controls.Menu)(target));
                return;

            case 2:
                this.StartWork = ((System.Windows.Controls.MenuItem)(target));
                return;

            case 3:
                this.OpenFile = ((System.Windows.Controls.MenuItem)(target));

            #line 21 "..\..\MainWindow.xaml"
                this.OpenFile.Click += new System.Windows.RoutedEventHandler(this.OpenFile_MenuItem_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.AddFile = ((System.Windows.Controls.MenuItem)(target));

            #line 22 "..\..\MainWindow.xaml"
                this.AddFile.Click += new System.Windows.RoutedEventHandler(this.AddFile_Click);

            #line default
            #line hidden
                return;

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

            #line 36 "..\..\MainWindow.xaml"
                this.DelLastLine.Click += new System.Windows.RoutedEventHandler(this.DelChosen_Click);

            #line default
            #line hidden
                return;

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

            #line 37 "..\..\MainWindow.xaml"
                this.DelAllLines.Click += new System.Windows.RoutedEventHandler(this.DelAllLines_Click);

            #line default
            #line hidden
                return;

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

            #line 38 "..\..\MainWindow.xaml"
                this.DelAllTitles.Click += new System.Windows.RoutedEventHandler(this.DelAllTitles_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.DelAllGraphs = ((System.Windows.Controls.MenuItem)(target));

            #line 39 "..\..\MainWindow.xaml"
                this.DelAllGraphs.Click += new System.Windows.RoutedEventHandler(this.DelAllGraphs_Click);

            #line default
            #line hidden
                return;

            case 9:
                this.SaveImage = ((System.Windows.Controls.MenuItem)(target));

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

            #line default
            #line hidden
                return;

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

            #line 55 "..\..\MainWindow.xaml"
                this.PageOptions.Click += new System.Windows.RoutedEventHandler(this.PageOptions_Click);

            #line default
            #line hidden
                return;

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

            #line 56 "..\..\MainWindow.xaml"
                this.PrintOptions.Click += new System.Windows.RoutedEventHandler(this.PrintOptions_Click);

            #line default
            #line hidden
                return;

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

            #line 57 "..\..\MainWindow.xaml"
                this.PreviewPrint.Click += new System.Windows.RoutedEventHandler(this.PreviewPrint_Click);

            #line default
            #line hidden
                return;

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

            #line 69 "..\..\MainWindow.xaml"
                this.DelKursorButton.Click += new System.Windows.RoutedEventHandler(this.DelKursorButton_Click);

            #line default
            #line hidden
                return;

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

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

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

            #line default
            #line hidden
                return;

            case 16:
                this.LoadMenuItem = ((System.Windows.Controls.MenuItem)(target));

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

            #line default
            #line hidden
                return;

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

            #line 75 "..\..\MainWindow.xaml"
                this.NewBeginning.Click += new System.Windows.RoutedEventHandler(this.NewBeginning_Click);

            #line default
            #line hidden
                return;

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

            #line 76 "..\..\MainWindow.xaml"
                this.LoadSvrkNames.Click += new System.Windows.RoutedEventHandler(this.LoadSvrkNames_Click);

            #line default
            #line hidden
                return;

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

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

            #line 80 "..\..\MainWindow.xaml"
                this.DiffEffModule.Click += new System.Windows.RoutedEventHandler(this.DiffEffModule_Click);

            #line default
            #line hidden
                return;

            case 21:
                this.Values_Module = ((System.Windows.Controls.MenuItem)(target));

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

            #line default
            #line hidden
                return;

            case 22:
                this.CalculOptions = ((System.Windows.Controls.MenuItem)(target));

            #line 82 "..\..\MainWindow.xaml"
                this.CalculOptions.Click += new System.Windows.RoutedEventHandler(this.CalculOptions_Click);

            #line default
            #line hidden
                return;

            case 23:
                this.Axes_Menu = ((System.Windows.Controls.MenuItem)(target));
                return;

            case 24:
                this.X_Format = ((System.Windows.Controls.MenuItem)(target));

            #line 85 "..\..\MainWindow.xaml"
                this.X_Format.Click += new System.Windows.RoutedEventHandler(this.X_Format_Click);

            #line default
            #line hidden
                return;

            case 25:
                this.Yleft_Format = ((System.Windows.Controls.MenuItem)(target));

            #line 86 "..\..\MainWindow.xaml"
                this.Yleft_Format.Click += new System.Windows.RoutedEventHandler(this.Yleft_Format_Click);

            #line default
            #line hidden
                return;

            case 26:
                this.Yright_Format = ((System.Windows.Controls.MenuItem)(target));

            #line 87 "..\..\MainWindow.xaml"
                this.Yright_Format.Click += new System.Windows.RoutedEventHandler(this.Yright_Format_Click);

            #line default
            #line hidden
                return;

            case 27:
                this.Y2left_Format = ((System.Windows.Controls.MenuItem)(target));

            #line 88 "..\..\MainWindow.xaml"
                this.Y2left_Format.Click += new System.Windows.RoutedEventHandler(this.Y2left_Format_Click);

            #line default
            #line hidden
                return;

            case 28:
                this.Y2right_Format = ((System.Windows.Controls.MenuItem)(target));

            #line 89 "..\..\MainWindow.xaml"
                this.Y2right_Format.Click += new System.Windows.RoutedEventHandler(this.Y2right_Format_Click);

            #line default
            #line hidden
                return;

            case 29:
                this.TabCont1 = ((System.Windows.Controls.TabControl)(target));
                return;

            case 30:
                this.Points_Tab = ((System.Windows.Controls.TabItem)(target));
                return;

            case 31:
                this.Points_List = ((System.Windows.Controls.ListView)(target));
                return;

            case 32:

            #line 136 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.ContextMenu)(target)).Closed += new System.Windows.RoutedEventHandler(this.ContextMenu_Closed);

            #line default
            #line hidden
                return;

            case 33:
                this.Delete = ((System.Windows.Controls.MenuItem)(target));

            #line 137 "..\..\MainWindow.xaml"
                this.Delete.Click += new System.Windows.RoutedEventHandler(this.Delete_Click);

            #line default
            #line hidden
                return;

            case 34:
                this.list_Parameters = ((System.Windows.Controls.ListView)(target));

            #line 143 "..\..\MainWindow.xaml"
                this.list_Parameters.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.List_Parameters_MouseDoubleClick);

            #line default
            #line hidden

            #line 143 "..\..\MainWindow.xaml"
                this.list_Parameters.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.List_Parameters_MouseLeftButtonUp);

            #line default
            #line hidden
                return;

            case 35:

            #line 152 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.ContextMenu)(target)).Closed += new System.Windows.RoutedEventHandler(this.ContextMenu_Closed);

            #line default
            #line hidden
                return;

            case 36:
                this.bLeft = ((System.Windows.Controls.MenuItem)(target));

            #line 153 "..\..\MainWindow.xaml"
                this.bLeft.Click += new System.Windows.RoutedEventHandler(this.BuildLeft_Click);

            #line default
            #line hidden
                return;

            case 37:
                this.bRight = ((System.Windows.Controls.MenuItem)(target));

            #line 154 "..\..\MainWindow.xaml"
                this.bRight.Click += new System.Windows.RoutedEventHandler(this.BuildRight_Click);

            #line default
            #line hidden
                return;

            case 38:
                this.addLeftAxis = ((System.Windows.Controls.MenuItem)(target));

            #line 155 "..\..\MainWindow.xaml"
                this.addLeftAxis.Click += new System.Windows.RoutedEventHandler(this.bsLeft_Click);

            #line default
            #line hidden
                return;

            case 39:
                this.addRightAxis = ((System.Windows.Controls.MenuItem)(target));

            #line 156 "..\..\MainWindow.xaml"
                this.addRightAxis.Click += new System.Windows.RoutedEventHandler(this.bsRight_Click);

            #line default
            #line hidden
                return;

            case 40:
                this.ToCSV = ((System.Windows.Controls.MenuItem)(target));

            #line 157 "..\..\MainWindow.xaml"
                this.ToCSV.Click += new System.Windows.RoutedEventHandler(this.ToCSV_Click);

            #line default
            #line hidden
                return;

            case 41:
                this.Substraction_Men_Item = ((System.Windows.Controls.MenuItem)(target));

            #line 158 "..\..\MainWindow.xaml"
                this.Substraction_Men_Item.Click += new System.Windows.RoutedEventHandler(this.Substraction_Men_Item_Click);

            #line default
            #line hidden
                return;

            case 42:
                this.Delete_Men_Item = ((System.Windows.Controls.MenuItem)(target));

            #line 159 "..\..\MainWindow.xaml"
                this.Delete_Men_Item.Click += new System.Windows.RoutedEventHandler(this.Delete_Men_Item_Click);

            #line default
            #line hidden
                return;

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

            case 44:
                this.TextBoxTime = ((System.Windows.Controls.TextBox)(target));
                return;

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

            #line 174 "..\..\MainWindow.xaml"
                this.ButtonShift.Click += new System.Windows.RoutedEventHandler(this.ButtonShift_Click);

            #line default
            #line hidden
                return;

            case 46:
                this.TextBoxStartTime = ((System.Windows.Controls.TextBox)(target));
                return;

            case 47:
                this.TextBoxEndTime = ((System.Windows.Controls.TextBox)(target));
                return;

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

            #line 186 "..\..\MainWindow.xaml"
                this.ButtonCutTime.Click += new System.Windows.RoutedEventHandler(this.ButtonCutTime_Click);

            #line default
            #line hidden
                return;

            case 49:
                this.Plot_Tab = ((System.Windows.Controls.TabItem)(target));
                return;

            case 50:
                this.ChartHost = ((System.Windows.Forms.Integration.WindowsFormsHost)(target));
                return;

            case 51:
                this.myChart = ((System.Windows.Forms.DataVisualization.Charting.Chart)(target));
                return;

            case 52:
                this.textBox_Arena_N = ((System.Windows.Controls.TextBox)(target));
                return;

            case 53:
                this.ButtonDrowLine = ((System.Windows.Controls.Button)(target));

            #line 224 "..\..\MainWindow.xaml"
                this.ButtonDrowLine.Click += new System.Windows.RoutedEventHandler(this.ButtonDrowLine_Click);

            #line default
            #line hidden
                return;

            case 54:
                this.ButtonDrow_Title = ((System.Windows.Controls.Button)(target));

            #line 225 "..\..\MainWindow.xaml"
                this.ButtonDrow_Title.Click += new System.Windows.RoutedEventHandler(this.ButtonDrowTitle_Click);

            #line default
            #line hidden
                return;

            case 55:
                this.LabelXcoord = ((System.Windows.Controls.Label)(target));
                return;

            case 56:
                this.LabelYcoord = ((System.Windows.Controls.Label)(target));
                return;

            case 57:
                this.AreasList = ((System.Windows.Controls.ComboBox)(target));

            #line 232 "..\..\MainWindow.xaml"
                this.AreasList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AreasList_Selected);

            #line default
            #line hidden
                return;

            case 58:
                this.RezultCurrent_Tab = ((System.Windows.Controls.TabItem)(target));
                return;

            case 59:
                this.TableCurrent = ((System.Windows.Controls.DataGrid)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #37
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.UserControl = ((BMC.Presentation.CReasonCategory)(target));

            #line 7 "..\..\..\Views\CReasonCategory.xaml"
                this.UserControl.Loaded += new System.Windows.RoutedEventHandler(this.ReasonandCategory_Loaded);

            #line default
            #line hidden

            #line 8 "..\..\..\Views\CReasonCategory.xaml"
                this.UserControl.Unloaded += new System.Windows.RoutedEventHandler(this.ReasonandCategory_Unloaded);

            #line default
            #line hidden
                return;

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

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

            #line 38 "..\..\..\Views\CReasonCategory.xaml"
                this.cmbCategory.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbCategory_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

            #line 40 "..\..\..\Views\CReasonCategory.xaml"
                this.txtComments.PreviewMouseUp += new System.Windows.Input.MouseButtonEventHandler(this.txtComments_PreviewMouseUp);

            #line default
            #line hidden
                return;

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

            #line 41 "..\..\..\Views\CReasonCategory.xaml"
                this.btnAdd.Click += new System.Windows.RoutedEventHandler(this.btnAdd_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.lstRC = ((System.Windows.Controls.ListView)(target));
                return;

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

            #line 92 "..\..\..\Views\CReasonCategory.xaml"
                this.btnSave.Click += new System.Windows.RoutedEventHandler(this.btnSave_Click);

            #line default
            #line hidden
                return;

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

            #line 93 "..\..\..\Views\CReasonCategory.xaml"
                this.btnCancel.Click += new System.Windows.RoutedEventHandler(this.btnCancel_Click);

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

            #line 6 "..\..\..\..\Views\SelectOutsoleReleaseMaterialWindow.xaml"
                ((MasterSchedule.Views.SelectOutsoleReleaseMaterialWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.txtReportId = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

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

            #line 20 "..\..\..\..\Views\SelectOutsoleReleaseMaterialWindow.xaml"
                this.btnOk.Click += new System.Windows.RoutedEventHandler(this.btnOk_Click);

            #line default
            #line hidden
                return;

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

            #line 21 "..\..\..\..\Views\SelectOutsoleReleaseMaterialWindow.xaml"
                this.btnSearchExpand.Click += new System.Windows.RoutedEventHandler(this.btnSearchExpand_Click);

            #line default
            #line hidden
                return;

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

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

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

            #line 35 "..\..\..\..\Views\SelectOutsoleReleaseMaterialWindow.xaml"
                this.btnSearch.Click += new System.Windows.RoutedEventHandler(this.btnSearch_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.lvReportId = ((System.Windows.Controls.ListView)(target));

            #line 36 "..\..\..\..\Views\SelectOutsoleReleaseMaterialWindow.xaml"
                this.lvReportId.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.lvReportId_MouseDoubleClick);

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

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

            #line default
            #line hidden
                return;

            case 2:

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

            #line default
            #line hidden
                return;

            case 3:

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

            #line default
            #line hidden
                return;

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

            case 5:
                this.lstViewCar = ((System.Windows.Controls.ListView)(target));

            #line 29 "..\..\MainWindow.xaml"
                this.lstViewCar.Loaded += new System.Windows.RoutedEventHandler(this.StatusBar);

            #line default
            #line hidden

            #line 29 "..\..\MainWindow.xaml"
                this.lstViewCar.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.StatusBar);

            #line default
            #line hidden
                return;

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

            #line 39 "..\..\MainWindow.xaml"
                this.miUpdate.Click += new System.Windows.RoutedEventHandler(this.miUpdate_Click);

            #line default
            #line hidden
                return;

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

            #line 41 "..\..\MainWindow.xaml"
                this.miDelete.Click += new System.Windows.RoutedEventHandler(this.miDelete_Click);

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

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

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

            #line 15 "..\..\UsersMainWindow.xaml"
                this.btMusicPlay.Click += new System.Windows.RoutedEventHandler(this.btMusicPlay_Click);

            #line default
            #line hidden
                return;

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

            #line 16 "..\..\UsersMainWindow.xaml"
                this.lvSongsList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lvSearch_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

            #line 36 "..\..\UsersMainWindow.xaml"
                this.btShopingCard.Click += new System.Windows.RoutedEventHandler(this.btShopingCard_Click);

            #line default
            #line hidden
                return;

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

            #line 37 "..\..\UsersMainWindow.xaml"
                this.btCheckOut.Click += new System.Windows.RoutedEventHandler(this.btCheckOut_Click);

            #line default
            #line hidden
                return;

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

            case 13:
                this.lblCardNum = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #41
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 7 "..\..\..\Interfaz\VCuentas.xaml"
                ((ClienteFisio.Interfaz.VCuentas)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing);

            #line default
            #line hidden

            #line 7 "..\..\..\Interfaz\VCuentas.xaml"
                ((ClienteFisio.Interfaz.VCuentas)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

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

            #line 30 "..\..\..\Interfaz\VCuentas.xaml"
                this.btnVolver.Click += new System.Windows.RoutedEventHandler(this.btnVolver_Click);

            #line default
            #line hidden
                return;

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

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

            case 5:
                this.listViewS = ((System.Windows.Controls.ListView)(target));

            #line 102 "..\..\..\Interfaz\VCuentas.xaml"
                this.listViewS.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.listViewS_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            case 31:
                this.label14 = ((System.Windows.Controls.Label)(target));
                return;

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

            #line 164 "..\..\..\Interfaz\VCuentas.xaml"
                this.button1.Click += new System.Windows.RoutedEventHandler(this.button1_Click);

            #line default
            #line hidden
                return;

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

            case 34:
                this.calendar1 = ((Microsoft.Windows.Controls.Calendar)(target));

            #line 166 "..\..\..\Interfaz\VCuentas.xaml"
                this.calendar1.SelectedDatesChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.calendar1_SelectedDatesChanged);

            #line default
            #line hidden
                return;

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

            #line 27 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.TextBlock)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.TextBlock_MouseDown_1);

            #line default
            #line hidden
                return;

            case 2:

            #line 31 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.TextBlock)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.TextBlock_MouseDown);

            #line default
            #line hidden
                return;

            case 3:

            #line 36 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.TextBlock)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.TextBlock_MouseDown_2);

            #line default
            #line hidden
                return;

            case 4:
                this.Chip = ((MaterialDesignThemes.Wpf.Chip)(target));
                return;

            case 5:

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

            #line default
            #line hidden
                return;

            case 6:
                this.MSList = ((System.Windows.Controls.ListView)(target));

            #line 57 "..\..\MainWindow.xaml"
                this.MSList.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.MSList_MouseDoubleClick);

            #line default
            #line hidden
                return;

            case 7:
                this.MSGrid = ((System.Windows.Controls.GridView)(target));
                return;

            case 8:
                this.boxes = ((System.Windows.Controls.GridViewColumn)(target));
                return;

            case 9:
                this.Who = ((System.Windows.Controls.GridViewColumn)(target));
                return;

            case 10:
                this.What = ((System.Windows.Controls.GridViewColumn)(target));
                return;

            case 11:
                this.Date = ((System.Windows.Controls.GridViewColumn)(target));
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

            case 14:
                this.M3 = ((System.Windows.Controls.RadioButton)(target));

            #line 101 "..\..\MainWindow.xaml"
                this.M3.Checked += new System.Windows.RoutedEventHandler(this.RadioButton_Checked_3);

            #line default
            #line hidden
                return;

            case 15:
                this.M4 = ((System.Windows.Controls.RadioButton)(target));

            #line 107 "..\..\MainWindow.xaml"
                this.M4.Checked += new System.Windows.RoutedEventHandler(this.RadioButton_Checked_2);

            #line default
            #line hidden
                return;

            case 16:
                this.renew = ((System.Windows.Controls.Button)(target));

            #line 112 "..\..\MainWindow.xaml"
                this.renew.Click += new System.Windows.RoutedEventHandler(this.renew_Click);

            #line default
            #line hidden
                return;

            case 17:
                this.deleteMS = ((System.Windows.Controls.Button)(target));

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 145 "..\..\MainWindow.xaml"
                this.to_faw.Click += new System.Windows.RoutedEventHandler(this.to_faw_Click);

            #line default
            #line hidden
                return;

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

            #line 156 "..\..\MainWindow.xaml"
                this.LPage.Click += new System.Windows.RoutedEventHandler(this.LPage_Click);

            #line default
            #line hidden
                return;

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

            #line 175 "..\..\MainWindow.xaml"
                this.NPage.Click += new System.Windows.RoutedEventHandler(this.NPage_Click);

            #line default
            #line hidden
                return;

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

            case 23:
                this.number = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #43
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.GridMain = ((System.Windows.Controls.Grid)(target));
                return;

            case 2:
                this.BackGroundImage = ((System.Windows.Controls.Image)(target));
                return;

            case 3:

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

            #line default
            #line hidden
                return;

            case 4:
                this.NameofForm = ((System.Windows.Controls.TextBlock)(target));
                return;

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

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

            #line 80 "..\..\MainWindow.xaml"
                this.ButtonOpenMenu.Click += new System.Windows.RoutedEventHandler(this.ButtonOpenMenu_Click);

            #line default
            #line hidden
                return;

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

            #line 83 "..\..\MainWindow.xaml"
                this.ButtonCloseMenu.Click += new System.Windows.RoutedEventHandler(this.ButtonCloseMenu_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.ListViewMenu = ((System.Windows.Controls.ListView)(target));

            #line 91 "..\..\MainWindow.xaml"
                this.ListViewMenu.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.ListViewMenu_SelectionChanged);

            #line default
            #line hidden
                return;

            case 9:
                this.PurchaseOrder = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 10:
                this.RecieveOrder = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 11:
                this.Transfer_Kitchen = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 12:
                this.Transfer_Resturant = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 13:
                this.Inventory = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 14:
                this.Items = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 15:
                this.Recipes = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 16:
                this.GenerateBatch = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 17:
                this.KitcheItemsn = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 18:
                this.CategoriesAndSub = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 19:
                this.ProcessBulkItems = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 20:
                this.Adjustment = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 21:
                this.AdjustmentReasons = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 22:
                this.PhysicalInventory = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 23:
                this.Vendors = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 24:
                this.Users = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 25:
                this.Units = ((System.Windows.Controls.ListViewItem)(target));
                return;

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

            #line 6 "..\..\..\..\Views\SewingMasterWindow.xaml"
                ((MasterSchedule.Views.SewingMasterWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden

            #line 6 "..\..\..\..\Views\SewingMasterWindow.xaml"
                ((MasterSchedule.Views.SewingMasterWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing);

            #line default
            #line hidden

            #line 6 "..\..\..\..\Views\SewingMasterWindow.xaml"
                ((MasterSchedule.Views.SewingMasterWindow)(target)).Activated += new System.EventHandler(this.Window_Activated);

            #line default
            #line hidden

            #line 6 "..\..\..\..\Views\SewingMasterWindow.xaml"
                ((MasterSchedule.Views.SewingMasterWindow)(target)).Deactivated += new System.EventHandler(this.Window_Deactivated);

            #line default
            #line hidden
                return;

            case 2:

            #line 11 "..\..\..\..\Views\SewingMasterWindow.xaml"
                ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.SaveCommandBinding_Executed);

            #line default
            #line hidden
                return;

            case 3:
                this.btnSave = ((System.Windows.Controls.MenuItem)(target));

            #line 22 "..\..\..\..\Views\SewingMasterWindow.xaml"
                this.btnSave.Click += new System.Windows.RoutedEventHandler(this.btnSave_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.lblPopup = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 5:
                this.popup = ((System.Windows.Controls.Primitives.Popup)(target));
                return;

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

            case 7:
                this.dgSewingMaster = ((MasterSchedule.Customs.CustomDataGrid)(target));
                return;

            case 8:
                this.colSewingLine = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 9:
                this.colSewingQuota = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 10:
                this.colSewingActualStartDate = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 11:
                this.colSewingActualFinishDate = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 12:
                this.colSewingBalance = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 13:
                this.colCutAQuota = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 14:
                this.colCutAActualStartDate = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 15:
                this.colCutAActualFinishDate = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 16:
                this.colCutABalance = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 17:
                this.colPrintingBalance = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 18:
                this.colH_FBalance = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 19:
                this.colEmbroideryBalance = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 20:
                this.colCutBBalance = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

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

            #line 151 "..\..\..\..\Views\SewingMasterWindow.xaml"
                this.btnCaculate.Click += new System.Windows.RoutedEventHandler(this.btnCaculate_Click);

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

            #line 6 "..\..\..\AlarmSet.xaml"
                ((CoreTest.AlarmSet)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden

            #line 6 "..\..\..\AlarmSet.xaml"
                ((CoreTest.AlarmSet)(target)).Closed += new System.EventHandler(this.Window_Closed);

            #line default
            #line hidden
                return;

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

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

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

            case 5:
                this.toolBar1 = ((System.Windows.Controls.ToolBar)(target));
                return;

            case 6:
                this.dtstart = ((Microsoft.Windows.Controls.DateTimePicker)(target));
                return;

            case 7:
                this.dtend = ((Microsoft.Windows.Controls.DateTimePicker)(target));
                return;

            case 8:
                this.colorpicker = ((Microsoft.Windows.Controls.ColorPicker)(target));

            #line 75 "..\..\..\AlarmSet.xaml"
                this.colorpicker.SelectedColorChanged += new System.Windows.RoutedPropertyChangedEventHandler <System.Windows.Media.Color>(this.ColorPicker_SelectedColorChanged);

            #line default
            #line hidden
                return;

            case 9:
                this.list1 = ((System.Windows.Controls.ListView)(target));
                return;

            case 10:
                this.list3 = ((System.Windows.Controls.ListBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.label = ((System.Windows.Controls.Label)(target));
                return;

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

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

            #line 14 "..\..\..\Client\ClientPage.xaml"
                this.txt_search.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.Txt_szukaj_TextChanged);

            #line default
            #line hidden
                return;

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

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

            #line 29 "..\..\..\Client\ClientPage.xaml"
                this.btn_dodaj_klienta.Click += new System.Windows.RoutedEventHandler(this.Btn_dodaj_klienta_Click);

            #line default
            #line hidden
                return;

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

            #line 30 "..\..\..\Client\ClientPage.xaml"
                this.btn_edytuj_klienta.Click += new System.Windows.RoutedEventHandler(this.Btn_edytuj_klienta_Click);

            #line default
            #line hidden
                return;

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

            #line 31 "..\..\..\Client\ClientPage.xaml"
                this.btn_usun_klienta.Click += new System.Windows.RoutedEventHandler(this.Btn_edytuj_klienta_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.lbl_ilosc = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #47
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 5 "..\..\..\window_References.xaml"
                ((WpfApplication1.References)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.wrap1 = ((System.Windows.Controls.WrapPanel)(target));
                return;

            case 3:
                this.check1 = ((System.Windows.Controls.CheckBox)(target));

            #line 14 "..\..\..\window_References.xaml"
                this.check1.Click += new System.Windows.RoutedEventHandler(this.check1_Click);

            #line default
            #line hidden
                return;

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

            #line 16 "..\..\..\window_References.xaml"
                this.com1.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.com1_SelectionChanged);

            #line default
            #line hidden
                return;

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

            case 6:
                this.addref = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 7:
                this.book = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

            case 13:
                this.journal = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 14:
                this.journal_author = ((System.Windows.Controls.TextBox)(target));
                return;

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

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

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

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

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

            case 20:
                this.listref = ((System.Windows.Controls.ListView)(target));
                return;

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

            #line 97 "..\..\..\window_References.xaml"
                this.buttonOk.Click += new System.Windows.RoutedEventHandler(this.buttonOk_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #48
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.gridMenuCrud = ((System.Windows.Controls.Grid)(target));
                return;

            case 2:

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

            #line default
            #line hidden

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

            #line default
            #line hidden
                return;

            case 3:
                this.sp_header = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 4:
                this.tb_messageMenu = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 5:
                this.icon_messageMenu = ((MaterialDesignThemes.Wpf.PackIcon)(target));
                return;

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

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

            #line 50 "..\..\..\View\CUMenu.xaml"
                this.tb_MenuName.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.Validation_Error));

            #line default
            #line hidden
                return;

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

            #line 54 "..\..\..\View\CUMenu.xaml"
                this.tb_MenuPrice.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumericCheck);

            #line default
            #line hidden

            #line 55 "..\..\..\View\CUMenu.xaml"
                this.tb_MenuPrice.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.Validation_Error));

            #line default
            #line hidden

            #line 55 "..\..\..\View\CUMenu.xaml"
                this.tb_MenuPrice.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.CheckWiteSpace);

            #line default
            #line hidden
                return;

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

            #line 57 "..\..\..\View\CUMenu.xaml"
                this.tb_MenuPricePromo.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumericCheck);

            #line default
            #line hidden

            #line 58 "..\..\..\View\CUMenu.xaml"
                this.tb_MenuPricePromo.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.Validation_Error));

            #line default
            #line hidden

            #line 58 "..\..\..\View\CUMenu.xaml"
                this.tb_MenuPricePromo.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.CheckWiteSpace);

            #line default
            #line hidden
                return;

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

            #line 64 "..\..\..\View\CUMenu.xaml"
                this.tb_MenuDescription.AddHandler(System.Windows.Controls.Validation.ErrorEvent, new System.EventHandler <System.Windows.Controls.ValidationErrorEventArgs>(this.Validation_Error));

            #line default
            #line hidden
                return;

            case 11:
                this.tg_MenuActif = ((System.Windows.Controls.Primitives.ToggleButton)(target));
                return;

            case 12:

            #line 73 "..\..\..\View\CUMenu.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.OnClickLoadMenuImage);

            #line default
            #line hidden
                return;

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

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

            #line 83 "..\..\..\View\CUMenu.xaml"
                this.bt_addItem.Click += new System.Windows.RoutedEventHandler(this.OnCLickAddNewItem);

            #line default
            #line hidden
                return;

            case 15:
                this.lv_items = ((System.Windows.Controls.ListView)(target));
                return;

            case 16:
                this.lv_options = ((System.Windows.Controls.ListView)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.btTerug = ((System.Windows.Controls.Button)(target));

            #line 25 "..\..\PlanningVerwijderen.xaml"
                this.btTerug.Click += new System.Windows.RoutedEventHandler(this.btTerug_Click);

            #line default
            #line hidden
                return;

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

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

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

            #line 59 "..\..\PlanningVerwijderen.xaml"
                this.lvLeerlingen.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lvLeerlingen_SelectionChanged);

            #line default
            #line hidden
                return;

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

            case 6:
                this.lvPlanningen = ((System.Windows.Controls.ListView)(target));

            #line 76 "..\..\PlanningVerwijderen.xaml"
                this.lvPlanningen.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lvPlanningen_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

            #line 86 "..\..\PlanningVerwijderen.xaml"
                this.btVerwijder.Click += new System.Windows.RoutedEventHandler(this.btVerwijderPlanning_Click);

            #line default
            #line hidden
                return;

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

            #line 107 "..\..\PlanningVerwijderen.xaml"
                this.btToets.Click += new System.Windows.RoutedEventHandler(this.btToets_Click);

            #line default
            #line hidden
                return;

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

            #line 135 "..\..\PlanningVerwijderen.xaml"
                this.btOpslaan.Click += new System.Windows.RoutedEventHandler(this.btOpslaan_Click);

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

            #line 6 "..\..\..\..\Views\LinePerformanceWindow.xaml"
                ((SewingIncentives.Views.LinePerformanceWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

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

            #line 20 "..\..\..\..\Views\LinePerformanceWindow.xaml"
                this.cboLineId.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cboLineId_SelectionChanged);

            #line default
            #line hidden
                return;

            case 3:
                this.dpDate = ((System.Windows.Controls.DatePicker)(target));
                return;

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

            #line 23 "..\..\..\..\Views\LinePerformanceWindow.xaml"
                this.btnLoad.Click += new System.Windows.RoutedEventHandler(this.btnLoad_Click);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

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

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

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

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

            #line 66 "..\..\..\..\Views\LinePerformanceWindow.xaml"
                this.btnIncentiveGradeLegend.Click += new System.Windows.RoutedEventHandler(this.btnIncentiveGradeLegend_Click);

            #line default
            #line hidden
                return;

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

            case 16:
                this.btnExcessIncentiveAll = ((System.Windows.Controls.Button)(target));

            #line 73 "..\..\..\..\Views\LinePerformanceWindow.xaml"
                this.btnExcessIncentiveAll.Click += new System.Windows.RoutedEventHandler(this.btnExcessIncentiveAll_Click);

            #line default
            #line hidden
                return;

            case 17:
                this.btnExcessIncentiveManual = ((System.Windows.Controls.Button)(target));

            #line 74 "..\..\..\..\Views\LinePerformanceWindow.xaml"
                this.btnExcessIncentiveManual.Click += new System.Windows.RoutedEventHandler(this.btnExcessIncentiveManual_Click);

            #line default
            #line hidden
                return;

            case 18:
                this.dgLinePerformance = ((System.Windows.Controls.DataGrid)(target));

            #line 78 "..\..\..\..\Views\LinePerformanceWindow.xaml"
                this.dgLinePerformance.CellEditEnding += new System.EventHandler <System.Windows.Controls.DataGridCellEditEndingEventArgs>(this.dgLinePerformance_CellEditEnding);

            #line default
            #line hidden
                return;

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

            case 20:
                this.colOthersPosition = ((System.Windows.Controls.DataGridComboBoxColumn)(target));
                return;

            case 21:
                this.colAdjustTimeOut = ((System.Windows.Controls.DataGridComboBoxColumn)(target));
                return;

            case 22:
                this.colICGrade = ((System.Windows.Controls.DataGridComboBoxColumn)(target));
                return;

            case 23:
                this.colExcessIncentive = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

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

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

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

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

            case 28:
                this.lblCountQC = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 29:
                this.lblCountNewWorker = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 30:
                this.lblCount2Months = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 31:
                this.lblCountTotalMP = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 32:
                this.lblCount1Month = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 33:
                this.lblCountOldWorker = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 35:
                this.btnCaculate = ((System.Windows.Controls.Button)(target));

            #line 159 "..\..\..\..\Views\LinePerformanceWindow.xaml"
                this.btnCaculate.Click += new System.Windows.RoutedEventHandler(this.btnCaculate_Click);

            #line default
            #line hidden
                return;

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

            #line 160 "..\..\..\..\Views\LinePerformanceWindow.xaml"
                this.btnSave.Click += new System.Windows.RoutedEventHandler(this.btnSave_Click);

            #line default
            #line hidden
                return;

            case 37:
                this.btnPrint = ((System.Windows.Controls.Button)(target));

            #line 161 "..\..\..\..\Views\LinePerformanceWindow.xaml"
                this.btnPrint.Click += new System.Windows.RoutedEventHandler(this.btnPrint_Click);

            #line default
            #line hidden
                return;

            case 38:
                this.popupIncentiveGradeLegend = ((System.Windows.Controls.Primitives.Popup)(target));
                return;

            case 39:
                this.lvIncentiveGrade = ((System.Windows.Controls.ListView)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #51
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.This = ((UOArtMerge.MainWindow)(target));
                return;

            case 2:

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

            #line default
            #line hidden
                return;

            case 3:

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

            #line default
            #line hidden
                return;

            case 4:

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

            #line default
            #line hidden
                return;

            case 5:

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

            #line default
            #line hidden
                return;

            case 6:
                this.ArtList1 = ((System.Windows.Controls.ListView)(target));

            #line 192 "..\..\..\MainWindow.xaml"
                this.ArtList1.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.ArtSet1_ScrollChanged));

            #line default
            #line hidden
                return;

            case 7:
                this.LandList1 = ((System.Windows.Controls.ListView)(target));

            #line 213 "..\..\..\MainWindow.xaml"
                this.LandList1.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.LandSet1_ScrollChanged));

            #line default
            #line hidden
                return;

            case 8:
                this.LandRadioButton = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 9:
                this.ItemsRadioButton = ((System.Windows.Controls.RadioButton)(target));
                return;

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

            #line 246 "..\..\..\MainWindow.xaml"
                this.LinkedButton.Click += new System.Windows.RoutedEventHandler(this.Link_Click);

            #line default
            #line hidden
                return;

            case 11:
                this.LinkedButtonpath = ((System.Windows.Shapes.Path)(target));
                return;

            case 12:

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

            #line default
            #line hidden
                return;

            case 13:

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

            #line default
            #line hidden
                return;

            case 14:

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

            #line default
            #line hidden
                return;

            case 15:

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

            #line default
            #line hidden
                return;

            case 16:

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

            #line default
            #line hidden
                return;

            case 17:

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

            #line default
            #line hidden
                return;

            case 18:
                this.ArtList2 = ((System.Windows.Controls.ListView)(target));

            #line 337 "..\..\..\MainWindow.xaml"
                this.ArtList2.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.ArtSet2_ScrollChanged));

            #line default
            #line hidden
                return;

            case 19:
                this.LandList2 = ((System.Windows.Controls.ListView)(target));

            #line 358 "..\..\..\MainWindow.xaml"
                this.LandList2.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.LandSet2_ScrollChanged));

            #line default
            #line hidden
                return;

            case 20:

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

            #line default
            #line hidden
                return;

            case 21:

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

            #line default
            #line hidden
                return;

            case 22:

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

            #line default
            #line hidden
                return;

            case 23:

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

            #line default
            #line hidden
                return;

            case 24:
                this.ClipboardItemList = ((System.Windows.Controls.ListView)(target));
                return;

            case 25:
                this.ClipboardLandList = ((System.Windows.Controls.ListView)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.CloseMenu_BeginStoryboard = ((System.Windows.Media.Animation.BeginStoryboard)(target));
                return;

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

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

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

            case 5:
                this.listViewItem = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 6:
                this.listViewItem1 = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 7:
                this.listViewItem2 = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 8:
                this.listViewItem3 = ((System.Windows.Controls.ListViewItem)(target));
                return;

            case 9:
                this.listViewItem4 = ((System.Windows.Controls.ListViewItem)(target));
                return;

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

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

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

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

            #line 290 "..\..\..\Windows\Menu_Win.xaml"
                this.buttonOpenMenu.Click += new System.Windows.RoutedEventHandler(this.buttonOpenMenu_Click);

            #line default
            #line hidden
                return;

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

            #line 293 "..\..\..\Windows\Menu_Win.xaml"
                this.buttonCloseMenu.Click += new System.Windows.RoutedEventHandler(this.buttonMenuClose_Click);

            #line default
            #line hidden
                return;

            case 15:
                this.firstImage = ((System.Windows.Controls.Image)(target));
                return;

            case 16:
                this.buttonClose = ((System.Windows.Controls.Button)(target));

            #line 326 "..\..\..\Windows\Menu_Win.xaml"
                this.buttonClose.Click += new System.Windows.RoutedEventHandler(this.buttonClose_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #53
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.Notification = ((System.Windows.Controls.Button)(target));

            #line 14 "..\..\Page8.xaml"
                this.Notification.Click += new System.Windows.RoutedEventHandler(this.Notification_Click);

            #line default
            #line hidden
                return;

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

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

            #line 24 "..\..\Page8.xaml"
                this.profile_but.Click += new System.Windows.RoutedEventHandler(this.profile_but_Click);

            #line default
            #line hidden
                return;

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

            #line 25 "..\..\Page8.xaml"
                this.home_but.Click += new System.Windows.RoutedEventHandler(this.Button_Click);

            #line default
            #line hidden
                return;

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

            #line 26 "..\..\Page8.xaml"
                this.Ride_but.Click += new System.Windows.RoutedEventHandler(this.Ride_but_Click);

            #line default
            #line hidden
                return;

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

            #line 27 "..\..\Page8.xaml"
                this.Settings_but.Click += new System.Windows.RoutedEventHandler(this.Settings_but_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.listView_Copy1 = ((System.Windows.Controls.ListView)(target));
                return;

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

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

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

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

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

            #line 39 "..\..\Page8.xaml"
                this.next1.Click += new System.Windows.RoutedEventHandler(this.next1_Click);

            #line default
            #line hidden
                return;

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

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

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

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

            case 17:
                this.next2 = ((System.Windows.Controls.Button)(target));

            #line 50 "..\..\Page8.xaml"
                this.next2.Click += new System.Windows.RoutedEventHandler(this.next2_Click);

            #line default
            #line hidden
                return;

            case 18:
                this.pic3 = ((System.Windows.Controls.Image)(target));
                return;

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

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

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

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

            case 23:
                this.pic4 = ((System.Windows.Controls.Image)(target));
                return;

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

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

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

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

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

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

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

            case 31:
                this.name5 = ((System.Windows.Controls.Label)(target));
                return;

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

            case 33:
                this.pic6 = ((System.Windows.Controls.Image)(target));
                return;

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

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

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

            case 37:
                this.next6 = ((System.Windows.Controls.Button)(target));
                return;

            case 38:
                this.pic7 = ((System.Windows.Controls.Image)(target));
                return;

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

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

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

            case 42:
                this.next7 = ((System.Windows.Controls.Button)(target));
                return;

            case 43:
                this.pic8 = ((System.Windows.Controls.Image)(target));
                return;

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

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

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

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

            case 48:
                this.pic9 = ((System.Windows.Controls.Image)(target));
                return;

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

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

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

            case 52:
                this.next9 = ((System.Windows.Controls.Button)(target));
                return;

            case 53:
                this.pic10 = ((System.Windows.Controls.Image)(target));
                return;

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

            case 55:
                this.msg10 = ((System.Windows.Controls.Label)(target));
                return;

            case 56:
                this.name10 = ((System.Windows.Controls.Label)(target));
                return;

            case 57:
                this.next10 = ((System.Windows.Controls.Button)(target));
                return;

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

            #line 23 "..\..\..\Source\ChooseMail.xaml"
                ((System.Windows.Controls.TextBlock)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.TextBlock_MouseDown);

            #line default
            #line hidden
                return;

            case 2:
                this.MSList = ((System.Windows.Controls.ListView)(target));

            #line 31 "..\..\..\Source\ChooseMail.xaml"
                this.MSList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.MSList_SelectionChanged);

            #line default
            #line hidden
                return;

            case 3:
                this.MSGrid = ((System.Windows.Controls.GridView)(target));
                return;

            case 4:
                this.boxes = ((System.Windows.Controls.GridViewColumn)(target));
                return;

            case 5:
                this.Who = ((System.Windows.Controls.GridViewColumn)(target));
                return;

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

            #line 53 "..\..\..\Source\ChooseMail.xaml"
                this.deleteMS.Click += new System.Windows.RoutedEventHandler(this.deleteMS_Click);

            #line default
            #line hidden
                return;

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

            #line 61 "..\..\..\Source\ChooseMail.xaml"
                this.Del.Click += new System.Windows.RoutedEventHandler(this.Del_Click);

            #line default
            #line hidden
                return;

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

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

            #line 78 "..\..\..\Source\ChooseMail.xaml"
                this.enter.Click += new System.Windows.RoutedEventHandler(this.Button_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.AddDialog = ((MaterialDesignThemes.Wpf.DialogHost)(target));
                return;

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

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

            #line 19 "..\..\..\MainWindow.xaml"
                this.AddButton.Click += new System.Windows.RoutedEventHandler(this.AddButton_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.MessageDialog = ((MaterialDesignThemes.Wpf.DialogHost)(target));

            #line 28 "..\..\..\MainWindow.xaml"
                this.MessageDialog.DialogClosing += new MaterialDesignThemes.Wpf.DialogClosingEventHandler(this.MessageDialog_Cancel);

            #line default
            #line hidden
                return;

            case 5:
                this.MessageDialogIcon = ((MaterialDesignThemes.Wpf.PackIcon)(target));
                return;

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

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

            case 8:
                this.DeleteDialog = ((MaterialDesignThemes.Wpf.DialogHost)(target));
                return;

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

            case 10:

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

            #line default
            #line hidden
                return;

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

            #line 49 "..\..\..\MainWindow.xaml"
                this.SureDeleteButton.Click += new System.Windows.RoutedEventHandler(this.SureDeleteButton_Click);

            #line default
            #line hidden
                return;

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

            #line 56 "..\..\..\MainWindow.xaml"
                this.ExtensionId.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.ExtensionId_DoubleClick);

            #line default
            #line hidden

            #line 56 "..\..\..\MainWindow.xaml"
                this.ExtensionId.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.ExtensionIdSelectedItem_Cancel);

            #line default
            #line hidden

            #line 56 "..\..\..\MainWindow.xaml"
                this.ExtensionId.MouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.ExtensionIdSelectedItem_Cancel);

            #line default
            #line hidden
                return;

            case 13:
                this.ExtensionIdHeader = ((System.Windows.Controls.GridViewColumn)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #56
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 6 "..\..\..\..\Views\OutsoleMasterFilterWindow.xaml"
                ((MasterSchedule.Views.OutsoleMasterFilterWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.popupLine = ((System.Windows.Controls.Primitives.Popup)(target));
                return;

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

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

            #line 30 "..\..\..\..\Views\OutsoleMasterFilterWindow.xaml"
                this.btnOK.Click += new System.Windows.RoutedEventHandler(this.btnOK_Click);

            #line default
            #line hidden
                return;

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

            #line 31 "..\..\..\..\Views\OutsoleMasterFilterWindow.xaml"
                this.btnCancel.Click += new System.Windows.RoutedEventHandler(this.btnCancel_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.popupETD = ((System.Windows.Controls.Primitives.Popup)(target));
                return;

            case 8:
                this.lvETD = ((System.Windows.Controls.ListView)(target));
                return;

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

            #line 55 "..\..\..\..\Views\OutsoleMasterFilterWindow.xaml"
                this.btnETDOK.Click += new System.Windows.RoutedEventHandler(this.btnETDOK_Click);

            #line default
            #line hidden
                return;

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

            #line 56 "..\..\..\..\Views\OutsoleMasterFilterWindow.xaml"
                this.btnETDCancel.Click += new System.Windows.RoutedEventHandler(this.btnETDCancel_Click);

            #line default
            #line hidden
                return;

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

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

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

            #line 78 "..\..\..\..\Views\OutsoleMasterFilterWindow.xaml"
                this.btnLine.Click += new System.Windows.RoutedEventHandler(this.btnLine_Click);

            #line default
            #line hidden
                return;

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

            #line 79 "..\..\..\..\Views\OutsoleMasterFilterWindow.xaml"
                this.btnETD.Click += new System.Windows.RoutedEventHandler(this.btnETD_Click);

            #line default
            #line hidden
                return;

            case 16:
                this.btnFilter = ((System.Windows.Controls.Button)(target));

            #line 80 "..\..\..\..\Views\OutsoleMasterFilterWindow.xaml"
                this.btnFilter.Click += new System.Windows.RoutedEventHandler(this.btnFilter_Click);

            #line default
            #line hidden
                return;

            case 17:
                this.btnReport = ((System.Windows.Controls.Button)(target));

            #line 81 "..\..\..\..\Views\OutsoleMasterFilterWindow.xaml"
                this.btnReport.Click += new System.Windows.RoutedEventHandler(this.btnReport_Click);

            #line default
            #line hidden
                return;

            case 18:
                this.dgMaster = ((System.Windows.Controls.DataGrid)(target));
                return;

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

            #line 90 "..\..\..\..\Views\OutsoleMasterFilterWindow.xaml"
                this.miRemove.Click += new System.Windows.RoutedEventHandler(this.miRemove_Click);

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

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

#line default
#line hidden
                return;

            case 2:

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

#line default
#line hidden
                return;

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

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

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

            case 6:
                this.MidiFileBasicInfo_LIST = ((System.Windows.Controls.ListBox)(target));
                return;

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

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

            case 9:
                this.MidiFormat = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 11:
                this.Deltatime = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 13:
                this.TotalNoteNum = ((System.Windows.Controls.Grid)(target));
                return;

            case 14:
                this.totalNoteNum = ((System.Windows.Controls.TextBox)(target));
                return;

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

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

#line 55 "..\..\MainWindow.xaml"
                this.previewTrackNum.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.textBoxPrice_PreviewTextInput);

#line default
#line hidden

#line 56 "..\..\MainWindow.xaml"
                this.previewTrackNum.AddHandler(System.Windows.Input.CommandManager.PreviewExecutedEvent, new System.Windows.Input.ExecutedRoutedEventHandler(this.textBoxPrice_PreviewExecuted));

#line default
#line hidden
                return;

            case 17:

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

#line default
#line hidden
                return;

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

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

            case 20:
                this.convertVolume00NoteOn = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 21:

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

#line default
#line hidden
                return;

            case 22:
                this.languageChoice = ((System.Windows.Controls.ComboBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #58
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 10 "..\..\..\AllUserControl\ucQLSanPham.xaml"
                ((System.Windows.Controls.Grid)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Grid_Loaded);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

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

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

            #line 63 "..\..\..\AllUserControl\ucQLSanPham.xaml"
                this.btnChonHinh.Click += new System.Windows.RoutedEventHandler(this.btnChonHinh_Click);

            #line default
            #line hidden
                return;

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

            #line 78 "..\..\..\AllUserControl\ucQLSanPham.xaml"
                this.btnThemSP.Click += new System.Windows.RoutedEventHandler(this.btnThemSP_Click);

            #line default
            #line hidden
                return;

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

            #line 90 "..\..\..\AllUserControl\ucQLSanPham.xaml"
                this.btnXoa.Click += new System.Windows.RoutedEventHandler(this.btnXoa_Click);

            #line default
            #line hidden
                return;

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

            #line 102 "..\..\..\AllUserControl\ucQLSanPham.xaml"
                this.btnSua.Click += new System.Windows.RoutedEventHandler(this.btnSua_Click);

            #line default
            #line hidden
                return;

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

            #line 114 "..\..\..\AllUserControl\ucQLSanPham.xaml"
                this.btnLuu.Click += new System.Windows.RoutedEventHandler(this.btnLuu_Click);

            #line default
            #line hidden
                return;

            case 14:
                this.txtTimKiemSP = ((System.Windows.Controls.TextBox)(target));

            #line 129 "..\..\..\AllUserControl\ucQLSanPham.xaml"
                this.txtTimKiemSP.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txtTimKiemSP_TextChanged);

            #line default
            #line hidden
                return;

            case 15:
                this.lsDanhSachSanPham = ((System.Windows.Controls.ListView)(target));

            #line 133 "..\..\..\AllUserControl\ucQLSanPham.xaml"
                this.lsDanhSachSanPham.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lsDanhSachSanPham_SelectionChanged);

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

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

            #line default
            #line hidden
                return;

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

            #line 43 "..\..\..\MainWindow.xaml"
                this.HelpButton.Click += new System.Windows.RoutedEventHandler(this.HelpButton_Click);

            #line default
            #line hidden
                return;

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

            #line 55 "..\..\..\MainWindow.xaml"
                this.MedicationButton.Click += new System.Windows.RoutedEventHandler(this.MedicationShow);

            #line default
            #line hidden
                return;

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

            #line 67 "..\..\..\MainWindow.xaml"
                this.ExitButton.Click += new System.Windows.RoutedEventHandler(this.ExitButton_Click);

            #line default
            #line hidden
                return;

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

            #line 98 "..\..\..\MainWindow.xaml"
                this.PreferenceButton.Click += new System.Windows.RoutedEventHandler(this.SearchPreference_Click);

            #line default
            #line hidden
                return;

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

            #line 102 "..\..\..\MainWindow.xaml"
                this.SearchTextBox.KeyUp += new System.Windows.Input.KeyEventHandler(this.SearchByCondition);

            #line default
            #line hidden
                return;

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

            case 8:
                this.PatientList = ((System.Windows.Controls.ListView)(target));

            #line 111 "..\..\..\MainWindow.xaml"
                this.PatientList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.List_Selection);

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

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

            #line 15 "..\..\MainWindow.xaml"
                this.emailButton.Click += new System.Windows.RoutedEventHandler(this.emailButton_Click);

            #line default
            #line hidden
                return;

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

            #line 20 "..\..\MainWindow.xaml"
                this.tweetButton.Click += new System.Windows.RoutedEventHandler(this.tweetButton_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

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

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

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

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

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

            #line 36 "..\..\MainWindow.xaml"
                this.btnProcess.Click += new System.Windows.RoutedEventHandler(this.btnProcess_Click);

            #line default
            #line hidden
                return;

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

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

            #line 38 "..\..\MainWindow.xaml"
                this.btnViewMessages.Click += new System.Windows.RoutedEventHandler(this.btnViewMessages_Click);

            #line default
            #line hidden
                return;

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

            #line 39 "..\..\MainWindow.xaml"
                this.btnIncidents.Click += new System.Windows.RoutedEventHandler(this.btnIncidents_Click);

            #line default
            #line hidden
                return;

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

            #line 40 "..\..\MainWindow.xaml"
                this.btnQuarantine.Click += new System.Windows.RoutedEventHandler(this.btnQuarantine_Click);

            #line default
            #line hidden
                return;

            case 16:
                this.btnTrends = ((System.Windows.Controls.Button)(target));

            #line 41 "..\..\MainWindow.xaml"
                this.btnTrends.Click += new System.Windows.RoutedEventHandler(this.btnTrends_Click);

            #line default
            #line hidden
                return;

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

            case 18:
                this.listMessages = ((System.Windows.Controls.ListView)(target));
                return;

            case 19:
                this.listQuarantine = ((System.Windows.Controls.ListView)(target));
                return;

            case 20:
                this.listHastags = ((System.Windows.Controls.ListView)(target));
                return;

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

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

            #line 89 "..\..\MainWindow.xaml"
                this.btnSave.Click += new System.Windows.RoutedEventHandler(this.btnSave_Click);

            #line default
            #line hidden
                return;

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

            #line 90 "..\..\MainWindow.xaml"
                this.btnLoad.Click += new System.Windows.RoutedEventHandler(this.btnLoad_Click);

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