コード例 #1
0
        private void InitWeekGrid()
        {
            _lessonControls = new Dictionary<string, LessonControl[]>();
            weekGrid.Children.Clear();
            var weekDays = new List<string>() { "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота" };
            foreach (var day in weekDays)
            {
                _lessonControls[day] = new LessonControl[8];
                var groupBox = new GroupBox
                {

                    Header = day,
                    Margin = new Thickness(5, 5, 5, 10),
                    BorderThickness = new Thickness(1),
                    Foreground = new SolidColorBrush((Color)FindResource("AccentColor")),
                    BorderBrush = new SolidColorBrush((Color)FindResource("AccentColor"))
                };
                weekGrid.Children.Add(groupBox);
                Grid.SetColumn(groupBox, weekDays.IndexOf(day));

                var lessonsGrid = new UniformGrid
                {
                    Rows = 8,
                    Columns = 1,
                    Margin = new Thickness(0, 4, 0, 4)
                };
                for (var i = 0; i < 8; i++)
                {
                    var lessonControl = new LessonControl();
                    lessonsGrid.Children.Add(lessonControl);
                    _lessonControls[day][i] = lessonControl;
                }
                groupBox.Content = lessonsGrid;
            }
        }
コード例 #2
0
ファイル: FrameBackend.cs プロジェクト: nite2006/xwt
        public FrameBackend()
        {
            ExGrid grid = new ExGrid();
            grid.Children.Add (this.groupBox = new SWC.GroupBox ());
            grid.Children.Add (this.flippedGroupBox = new SWC.GroupBox ());
            groupBox.SizeChanged += delegate (object sender, SizeChangedEventArgs e)
            {
                flippedGroupBox.RenderSize = groupBox.RenderSize;
            };

            this.flippedGroupBox.SetBinding (UIElement.IsEnabledProperty, new Binding ("IsEnabled") { Source = this.groupBox });
            this.flippedGroupBox.SetBinding (Control.BorderBrushProperty, new Binding ("BorderBrush") { Source = this.groupBox });
            this.flippedGroupBox.SetBinding (Control.BorderThicknessProperty,
                new Binding ("BorderThickness") {
                    Source = this.groupBox,
                    Converter =  new HFlippedBorderThicknessConverter ()
                });

            this.flippedGroupBox.RenderTransformOrigin = new System.Windows.Point (0.5, 0.5);
            this.flippedGroupBox.RenderTransform = new ScaleTransform (-1, 1);
            this.flippedGroupBox.Focusable = false;
            SWC.Panel.SetZIndex (this.flippedGroupBox, -1);

            Widget = grid;
        }
コード例 #3
0
 private GroupBox CreateHelpTopicControls(string Name, Dictionary<string, string> HelpTopics)
 {
     GroupBox topicGroupBox = new GroupBox();
     Label topicHeader = new Label();
     topicHeader.FontSize = 20;
     topicHeader.Content = Name;
     StackPanel topicStackPanel = new StackPanel();
     topicGroupBox.Header = topicHeader;
     topicGroupBox.Margin = new Thickness(10);
     foreach (KeyValuePair<string, string> kvp in HelpTopics)
     {
         Label topicTitle = new Label();
         topicTitle.FontSize = 14;
         topicTitle.Content = kvp.Key;
         TextBlock topic = new TextBlock();
         topic.HorizontalAlignment = System.Windows.HorizontalAlignment.Left;
         topic.Margin = new Thickness(20, 10, 10, 10);
         topic.Width = 1000;
         topic.TextWrapping = TextWrapping.Wrap;
         topic.Text = kvp.Value;
         topicStackPanel.Children.Add(topicTitle);
         topicStackPanel.Children.Add(topic);
     }
     topicGroupBox.Content = topicStackPanel;
     return topicGroupBox;
 }
コード例 #4
0
        private void Init()
        {
            config = new SyntaxTreeConfiguration(ConfigFilePath);
            checkBoxList = new CheckBoxPairList();

            // Create Groupboxes and CheckBoxis //

            foreach (var group in config.NodeTypeGroupList)
            {
                GroupBox gb = new GroupBox();
                gb.Header = group.Name;

                StackPanel sp = new StackPanel();

                foreach (var visibleInfo in group.NodeTypeList)
                {
                    CheckBox cb = new CheckBox();
                    cb.Content = visibleInfo.Left;
                    cb.IsChecked = visibleInfo.Right;

                    sp.Children.Add(cb);
                    checkBoxList.Add(new CheckBoxPair { Left = visibleInfo, Right = cb });
                }

                gb.Content = sp;
                MainWrapPanel.Children.Add(gb);
            }
        }
コード例 #5
0
        public override FrameworkElement GetGUIElement()
        {
            var group = new GroupBox();

            group.Header = WpfName;

            var stackPanel = new StackPanel { Orientation = Orientation.Horizontal };

            for (var i = 0; i < options.Length; ++i)
            {
                var checkBox = new CheckBox
                                 {
                                     Content = options[i],
                                     DataContext = i,
                                     IsChecked = chosenOptions.Contains(i)
                                 };
                checkBox.Margin = new Thickness(4, 3, 4, 3);
                checkBox.Checked += (sender, args) =>
                    { chosenOptions.Add((int)(sender as CheckBox).DataContext); };
                checkBox.Unchecked += (sender, args) =>
                    { chosenOptions.Remove((int)(sender as CheckBox).DataContext); };

                stackPanel.Children.Add(checkBox);
            }

            group.Content = stackPanel;

            return group;
        }
コード例 #6
0
        public void AddHistogram (Histogram histogram)
        {
            GroupBox groupBox = new GroupBox();
            MainPanel.Children.Add(groupBox);

            groupBox.Header = "Xray Image " + MainPanel.Children.Count.ToString();
            groupBox.Content = histogram;
        }
コード例 #7
0
ファイル: UI.cs プロジェクト: Genotoxicity/TableOfConnections
 private static GroupBox GetGroupBox(string header, object content)
 {
     GroupBox groupBox = new GroupBox();
     groupBox.Header = header;
     groupBox.Content = content;
     groupBox.SnapsToDevicePixels = true;
     groupBox.Margin = new Thickness(0, 1, 0, 0);
     return groupBox;
 }
コード例 #8
0
 public BinarySelector(int number)
 {
     BitNumber = number;
     Orientation = Orientation.Vertical;
     HorizontalAlignment = HorizontalAlignment.Stretch;
     VerticalAlignment = VerticalAlignment.Center;
     var gb = new GroupBox {Header = BitNumber.ToString(CultureInfo.InvariantCulture)};
     CheckBox = new CheckBox {IsChecked = false};
     gb.Content = CheckBox;
     Children.Add(gb);
 }
コード例 #9
0
ファイル: DocUISubSection.cs プロジェクト: 00Green27/DocUI
        /// <summary>
        /// Creates a new instance of the SubSectionOption
        /// </summary>
        /// <param name="xmlNode">The xmlnode containing the data.</param>
        /// <param name="xsdNode">The corresponding xsdNode.</param>
        /// <param name="panel">The panel on which this option should be placed.</param>
        /// <param name="parentForm">The form of which this option is a part.</param>
        public DocUISubSection(XmlNode xmlNode, XmlSchemaAnnotated xsdNode, Panel contentpanel, Panel overlaypanel, DynamicForm parentForm) :
            base(xmlNode, xsdNode, contentpanel, overlaypanel, parentForm)
        {
            XmlSchemaElement schemaEl = xsdNode as XmlSchemaElement;
            if (schemaEl != null)
            {
                optionlist = new List<AbstractDocUIComponent>();
                box = new GroupBox();
                DockPanel panel = new DockPanel();

                Grid g = new Grid() { Margin = new Thickness(5, 0, 0, 0) };
                g.ColumnDefinitions.Add(new ColumnDefinition() { Width = new GridLength(1, GridUnitType.Auto) });
                g.ColumnDefinitions.Add(new ColumnDefinition() { Width = new GridLength(1, GridUnitType.Star) });

                XmlSchemaSequence seq = XmlSchemaUtilities.tryGetSequence(schemaEl.ElementSchemaType);
                if (seq != null)
                {
                    foreach (XmlSchemaElement el in seq.Items)
                        Utilities.recursive(el, xmlNode.SelectSingleNode(el.Name), g, overlaypanel, (comp) =>
                        {
                            comp.placeOption();
                            optionlist.Add(comp);
                        }, parentForm);
                }

                if (xmlNode.Attributes["checked"] != null)
                {
                    check = new CheckBox() { Margin = new Thickness(5, 5, 0, 5) };
                    check.Checked += check_changed;
                    check.Checked += (s, e) => { hasPendingChanges(); };
                    check.Unchecked += check_changed;
                    check.Unchecked += (s, e) => { hasPendingChanges(); };
                    panel.Children.Add(check);
                }

                // if there is no label, there should be no groupbox.
                if (Label.Text != "")
                {
                    panel.Children.Add(Label);
                    box.Header = panel;
                    box.Content = g;
                    Control = box;
                }
                else
                {
                    panel.Children.Add(g);
                    //Control = g;
                    Control = panel;
                }

                setup();
            }
        }
コード例 #10
0
 public ComboBoxMediator(ControlParameter parameter)
 {
     this._cbDepositType = parameter.DepositWithDrawTranferType;
     this._cbFundSelectType = parameter.DepositCodeSelectType;
     this._gbFundSelectByItemPanel = parameter.DepositCodeSelectByItemPanel;
     this._spFundSelectByRangePanel = parameter.DepositCodeSelectByRangePanel;
     this._gridFundByItem = parameter.DepositCodeSelectByItem;
     this._spFundByRange = parameter.DepositCodeSelectByRange;
     this._btnQueryFund = parameter.QueryFundBtn;
     this._cbDepositType.SelectionChanged += cbDepositType_SelectionChanged;
     this._cbFundSelectType.SelectionChanged += cbFundSelectType_SelectionChanged;
 }
コード例 #11
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.groupBoxNew = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 2:
     this.border1 = ((System.Windows.Controls.Border)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #12
0
        public override FrameworkElement GetGUIElement()
        {
            var box = new GroupBox();

            var textBox = new TextBox { Text = Value };

            textBox.TextChanged += (sender, args) =>
                { Value = textBox.Text; };

            box.Header = WpfName;
            box.Content = textBox;

            return box;
        }
コード例 #13
0
 /// <summary>
 /// Display information about the state of Sphinx.
 /// </summary>
 /// <param name="sphinxIsStarted">The flag to check launched Sphinx.</param>
 /// <param name="lblSphinx">Label where to display information.</param>
 /// <param name="grpSearch">GroupBox which must be unlocked.</param>
 /// <param name="txtSearchResult">TextBox which must be unlocked.</param>
 public void RenderInformationAboutSphinx(bool sphinxIsStarted, Label lblSphinx, GroupBox grpSearch, TextBox txtSearchResult)
 {
     if (sphinxIsStarted)
     {
         lblSphinx.Content = "Sphinx: It works!";
         lblSphinx.Foreground = new SolidColorBrush(Color.FromArgb(0xFF, 0x00, 0xB4, 0x00));
     }
     else
     {
         lblSphinx.Content = "Sphinx: Does not work!";
         lblSphinx.Foreground = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0x00, 0x00));
         grpSearch.IsEnabled = false;
         txtSearchResult.IsEnabled = false;
     }
 }
コード例 #14
0
        public static RadioButton GetCheckedRadioButton(GroupBox grpbox)
        {
            Panel pnl = grpbox.Content as Panel;

            if (pnl != null)
            {
                foreach (UIElement el in pnl.Children)
                {
                    RadioButton radio = el as RadioButton;

                    if (radio != null && (bool)radio.IsChecked)
                        return radio;
                }
            }
            return null;
        }
コード例 #15
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.gb = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 2:
     this.lv_Sets = ((System.Windows.Controls.ListView)(target));
     
     #line 13 "..\..\..\..\Controls\Visualizers\ListSetsVisualizer.xaml"
     this.lv_Sets.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lv_Sets_SelectionChanged);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
コード例 #16
0
        private void MetroWindow_Loaded(object sender, RoutedEventArgs e)
        {
            var s = new Style();
            s.Setters.Add(new Setter(VisibilityProperty, Visibility.Collapsed));
            View.MainWindowTC.ItemContainerStyle = s;

            Entry.Instance.Plugins.LoadPlugins(Directory.GetCurrentDirectory() + @"\Plugins");
            foreach (PluginInstance v in Entry.Instance.Plugins.Loaded)
            {
                var groupbox = new GroupBox {Header = v.Instance.Name};
                var sp = new StackPanel {Name = Name = v.Instance.Name + "PI"};
                sp.Children.Add(new Label {Content = String.Format("Description: {0}", v.Instance.Description)});
                sp.Children.Add(new Label {Content = String.Format("Author: {0}", v.Instance.Author)});
                sp.Children.Add(new Label {Content = String.Format("Version: {0}", v.Instance.Version)});
                groupbox.Content = sp;
                PluginsView.Contents.Children.Add(groupbox);
            }
        }
コード例 #17
0
        protected void CreateStatus()
        {
            this.wrap_Status.Height = 0;

            foreach (Stat item in Stats.DefaultPersonStatusItems.Where(e => e.Type == "status"))
            {
                GroupBox box = new GroupBox();
                box.Width = this.wrap_Status.Width - 20;
                box.VerticalAlignment = VerticalAlignment.Top;
                box.Header = item.Name;
                this.wrap_Status.Children.Add(box);


                Grid grid = new Grid();
                grid.VerticalAlignment = VerticalAlignment.Top;
                box.Content = grid;


                if (item.ControlType == typeof(ProgressBar))
                {
                    ProgressBar value = (ProgressBar)item.GetControlInstance();
                    value.Margin = new Thickness(0, 2, 0, 0);
                    value.Name = "pgb_" + item.Name;
                    value.Height = 14;

                    ToolTip tip = new System.Windows.Controls.ToolTip();
                    tip.Content = "0";
                    value.ToolTip = tip;

                    grid.Children.Add(value);
                }
                else if (item.ControlType == typeof(CheckBox))
                {
                    CheckBox value = (CheckBox)item.GetControlInstance();
                    value.Margin = new Thickness(0, 2, 0, 0);
                    value.Name = "chk_" + item.Name;
                    value.Height = 14;
                    value.IsEnabled = false;
                    grid.Children.Add(value);
                }

                this.wrap_Status.Height += box.Height;
            }
        }
コード例 #18
0
ファイル: TuneTheRadio.cs プロジェクト: JianchengZh/kasicass
        public TuneTheRadio()
        {
            Title = "Tune the Radio";
            SizeToContent = SizeToContent.WidthAndHeight;

            GroupBox group = new GroupBox();
            group.Header = "Window Style";
            group.Margin = new Thickness(96);
            group.Padding = new Thickness(5);
            Content = group;

            StackPanel stack = new StackPanel();
            group.Content = stack;

            stack.Children.Add(CreateRadioButton("No border or caption", WindowStyle.None));
            stack.Children.Add(CreateRadioButton("Single-border window", WindowStyle.SingleBorderWindow));
            stack.Children.Add(CreateRadioButton("3D-border window", WindowStyle.ThreeDBorderWindow));
            stack.Children.Add(CreateRadioButton("Tool window", WindowStyle.ToolWindow));
            AddHandler(RadioButton.CheckedEvent, new RoutedEventHandler(RadioOnChecked));
        }
コード例 #19
0
ファイル: MainWindow.xaml.cs プロジェクト: slieser/sandbox2
        public void SetzeFächer(IEnumerable<Fach> fächer) {
            var aufgabenfelder = from fach in fächer group fach by fach.Aufgabenfeld;
            foreach (var aufgabenfeld in aufgabenfelder) {
                var groupBox = new GroupBox {
                    Header = aufgabenfeld.Key
                };
                var stackPanel = new StackPanel();
                groupBox.Content = stackPanel;

                mainStackPanel.Children.Add(groupBox);

                foreach (var fach in aufgabenfeld) {
                    var checkBox = new CheckBox {
                        Content = fach.Bezeichnung,
                        Tag = fach.Id
                    };
                    checkBoxes.Add(checkBox);
                    stackPanel.Children.Add(checkBox);
                }
            }
        }
コード例 #20
0
        private void initDebugLog()
        {
            debugLogTextBox = new TextBox();
            debugLogTextBox.HorizontalScrollBarVisibility = ScrollBarVisibility.Auto;
            debugLogTextBox.VerticalScrollBarVisibility = ScrollBarVisibility.Auto;
            debugLogTextBox.IsReadOnly = true;
            debugLogTextBox.FontFamily = new System.Windows.Media.FontFamily("Courier New");
            debugLogTextBox.FontSize = 10.667;

            RowDefinition rowDef = new RowDefinition();
            rowDef.Height = new GridLength(80);
            // current count is new index ==> (current max-index) + 1 ==> (count-1)+1 ==> count
            int rowIndex = mainGrid.RowDefinitions.Count;
            mainGrid.RowDefinitions.Add(rowDef);

            GroupBox debugGroupBox = new GroupBox();
            debugGroupBox.SetValue(Grid.RowProperty, rowIndex);
            debugGroupBox.Header = "Debug Log";
            debugGroupBox.Content = debugLogTextBox;

            mainGrid.Children.Add(debugGroupBox);
        }
コード例 #21
0
ファイル: FrameBackend.cs プロジェクト: antonydenyer/xwt
        public FrameBackend()
        {
            ExGrid grid = new ExGrid();
            grid.Children.Add (this.groupBox = new SWC.GroupBox ());
            grid.Children.Add (this.flippedGroupBox = new SWC.GroupBox ());

            this.flippedGroupBox.SetBinding (FrameworkElement.WidthProperty, new Binding ("ActualWidth") { Source = this.groupBox });
            this.flippedGroupBox.SetBinding (FrameworkElement.HeightProperty, new Binding ("ActualHeight") { Source = this.groupBox });
            this.flippedGroupBox.SetBinding (UIElement.IsEnabledProperty, new Binding ("IsEnabled") { Source = this.groupBox });
            this.flippedGroupBox.SetBinding (Control.BorderBrushProperty, new Binding ("BorderBrush") { Source = this.groupBox });
            this.flippedGroupBox.SetBinding (Control.BorderThicknessProperty,
                new Binding ("BorderThickness") {
                    Source = this.groupBox,
                    Converter =  new HFlippedBorderThicknessConverter ()
                });

            this.flippedGroupBox.RenderTransformOrigin = new System.Windows.Point (0.5, 0.5);
            this.flippedGroupBox.RenderTransform = new ScaleTransform (-1, 1);
            this.flippedGroupBox.Focusable = false;
            SWC.Panel.SetZIndex (this.flippedGroupBox, -1);

            Widget = grid;
        }
コード例 #22
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 2:
                this.groupBox2 = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 3:
                this.ntbxP = ((PIDLibrary.Controls.NumericTextBox)(target));
                return;

            case 4:
                this.ntbxI = ((PIDLibrary.Controls.NumericTextBox)(target));
                return;

            case 5:
                this.ntbxD = ((PIDLibrary.Controls.NumericTextBox)(target));
                return;

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

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

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

            case 9:
                this.groupBox3 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

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

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

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

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

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

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

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

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

            #line 80 "..\..\..\Controls\PIDParams.xaml"
                this.btnReset.Click += new System.Windows.RoutedEventHandler(this.btnReset_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #23
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.grpStep1 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

            #line 10 "..\..\..\LogForm.xaml"
                this.btnChooseDB.Click += new System.Windows.RoutedEventHandler(this.btnChooseDB_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.grpDBinfo = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

            #line 19 "..\..\..\LogForm.xaml"
                this.cmbTableList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbTableList_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

            case 15:
                this.grpStep2 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

            #line 33 "..\..\..\LogForm.xaml"
                this.cmbAlgList1.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbAlgList1_SelectionChanged);

            #line default
            #line hidden
                return;

            case 18:
                this.grpPere1 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            #line 40 "..\..\..\LogForm.xaml"
                this.btnDBpre.Click += new System.Windows.RoutedEventHandler(this.btnDBpre_Click);

            #line default
            #line hidden
                return;

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

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

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

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

            case 24:
                this.txtPara2 = ((System.Windows.Controls.TextBox)(target));
                return;

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

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

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

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

            case 29:
                this.grpStep3 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            case 31:
                this.cmbAlgList2 = ((System.Windows.Controls.ComboBox)(target));

            #line 61 "..\..\..\LogForm.xaml"
                this.cmbAlgList2.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbAlgList2_SelectionChanged);

            #line default
            #line hidden
                return;

            case 32:
                this.grpPere2 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            case 34:
                this.recShow = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 35:
                this.imgShow = ((System.Windows.Controls.Image)(target));
                return;

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

            #line 70 "..\..\..\LogForm.xaml"
                this.btnChoosePic.Click += new System.Windows.RoutedEventHandler(this.btnChoosePic_Click);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

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

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

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

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

            #line 84 "..\..\..\LogForm.xaml"
                this.btnMarkClear.Click += new System.Windows.RoutedEventHandler(this.btnMarkClear_Click);

            #line default
            #line hidden
                return;

            case 47:
                this.grpMarkInfo = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

            #line 96 "..\..\..\LogForm.xaml"
                this.btnCA.Click += new System.Windows.RoutedEventHandler(this.btnCA_Click);

            #line default
            #line hidden
                return;

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

            case 51:
                this.btnLab = ((System.Windows.Controls.Button)(target));

            #line 102 "..\..\..\LogForm.xaml"
                this.btnLab.Click += new System.Windows.RoutedEventHandler(this.btnLab_Click);

            #line default
            #line hidden
                return;

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

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

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

            #line 111 "..\..\..\LogForm.xaml"
                this.btnLog.Click += new System.Windows.RoutedEventHandler(this.btnLog_Click);

            #line default
            #line hidden
                return;

            case 55:
                this.btnHome = ((System.Windows.Controls.Button)(target));

            #line 116 "..\..\..\LogForm.xaml"
                this.btnHome.Click += new System.Windows.RoutedEventHandler(this.btnHome_Click);

            #line default
            #line hidden
                return;

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

            case 57:
                this.label15 = ((System.Windows.Controls.Label)(target));
                return;

            case 58:
                this.label10 = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #24
0
ファイル: CreateBank.g.i.cs プロジェクト: VadimBulavski/wpf
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 4 "..\..\..\Forms\CreateBank.xaml"
                ((ExamSearchBank.Forms.CreateBank)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

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

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

            case 4:
                this.gbKurs = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

            case 10:
                this.cbValyuta3 = ((System.Windows.Controls.ComboBox)(target));
                return;

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

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

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

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

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

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

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

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

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

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

            case 21:
                this.spBuy = ((System.Windows.Controls.StackPanel)(target));
                return;

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

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

            case 24:
                this.tbBuy3 = ((System.Windows.Controls.TextBox)(target));
                return;

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

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

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

            case 28:
                this.spSaveBank = ((System.Windows.Controls.StackPanel)(target));
                return;

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

            #line 62 "..\..\..\Forms\CreateBank.xaml"
                this.btCreateValyuta.Click += new System.Windows.RoutedEventHandler(this.btCreateValyuta_Click);

            #line default
            #line hidden
                return;

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

            #line 63 "..\..\..\Forms\CreateBank.xaml"
                this.btBankOk.Click += new System.Windows.RoutedEventHandler(this.btBankOk_Click);

            #line default
            #line hidden
                return;

            case 31:
                this.btBankCancel = ((System.Windows.Controls.Button)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #25
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.Light1Textbox = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 2:
                this.Light1Button = ((System.Windows.Controls.Primitives.ToggleButton)(target));

            #line 35 "..\..\LightControl.xaml"
                this.Light1Button.Click += new System.Windows.RoutedEventHandler(this.Light1Button_Checked);

            #line default
            #line hidden
                return;

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

            case 4:
                this.Light2Button = ((System.Windows.Controls.Primitives.ToggleButton)(target));

            #line 40 "..\..\LightControl.xaml"
                this.Light2Button.Click += new System.Windows.RoutedEventHandler(this.Light2Button_Checked);

            #line default
            #line hidden
                return;

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

            case 6:
                this.Light3Button = ((System.Windows.Controls.Primitives.ToggleButton)(target));

            #line 45 "..\..\LightControl.xaml"
                this.Light3Button.Click += new System.Windows.RoutedEventHandler(this.Light3Button_Checked);

            #line default
            #line hidden
                return;

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

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

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

            #line 56 "..\..\LightControl.xaml"
                this.ConnectButton.Click += new System.Windows.RoutedEventHandler(this.ConnectButton_Click);

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

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

            #line default
            #line hidden
                return;

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

            #line 12 "..\..\..\..\Views\ImportAssemblyIncentiveWindow.xaml"
                this.miImport.Click += new System.Windows.RoutedEventHandler(this.miImport_Click);

            #line default
            #line hidden
                return;

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

            #line 13 "..\..\..\..\Views\ImportAssemblyIncentiveWindow.xaml"
                this.miRevise.Click += new System.Windows.RoutedEventHandler(this.miRevise_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.groupImport = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            #line 28 "..\..\..\..\Views\ImportAssemblyIncentiveWindow.xaml"
                this.btnChooseExcelFile.Click += new System.Windows.RoutedEventHandler(this.btnChooseExcelFile_Click);

            #line default
            #line hidden
                return;

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

            #line 35 "..\..\..\..\Views\ImportAssemblyIncentiveWindow.xaml"
                this.btnImport.Click += new System.Windows.RoutedEventHandler(this.btnImport_Click);

            #line default
            #line hidden
                return;

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

            case 8:
                this.groupRevise = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            #line 70 "..\..\..\..\Views\ImportAssemblyIncentiveWindow.xaml"
                this.txtPatternNo.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txtPatternNo_TextChanged);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            #line 97 "..\..\..\..\Views\ImportAssemblyIncentiveWindow.xaml"
                this.btnDelete.Click += new System.Windows.RoutedEventHandler(this.btnDelete_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #27
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.mainCanvas_Copy = ((System.Windows.Controls.Canvas)(target));
                return;

            case 2:
                this.groupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

            #line 25 "..\..\WithdrawPage.xaml"
                this.backButton1.Click += new System.Windows.RoutedEventHandler(this.back_Click);

            #line default
            #line hidden
                return;

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

            #line 26 "..\..\WithdrawPage.xaml"
                this.Account_comboBox.DropDownClosed += new System.EventHandler(this.account_DropDownClosed);

            #line default
            #line hidden
                return;

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

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

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

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

            #line 36 "..\..\WithdrawPage.xaml"
                this.withdraw10Button.Click += new System.Windows.RoutedEventHandler(this.withdraw10_Click);

            #line default
            #line hidden
                return;

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

            #line 39 "..\..\WithdrawPage.xaml"
                this.withdraw50Button.Click += new System.Windows.RoutedEventHandler(this.withdraw50_Click);

            #line default
            #line hidden
                return;

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

            #line 43 "..\..\WithdrawPage.xaml"
                this.withdraw20Button.Click += new System.Windows.RoutedEventHandler(this.withdraw20_Click);

            #line default
            #line hidden
                return;

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

            #line 46 "..\..\WithdrawPage.xaml"
                this.withdraw100Button.Click += new System.Windows.RoutedEventHandler(this.withdraw100_Click);

            #line default
            #line hidden
                return;

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

            #line 49 "..\..\WithdrawPage.xaml"
                this.withdraw200Button.Click += new System.Windows.RoutedEventHandler(this.withdraw200_Click);

            #line default
            #line hidden
                return;

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

            #line 52 "..\..\WithdrawPage.xaml"
                this.withdraw500Button.Click += new System.Windows.RoutedEventHandler(this.withdraw500_Click);

            #line default
            #line hidden
                return;

            case 15:
                this.error_Label = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #28
0
ファイル: MainWindow.g.cs プロジェクト: iSmartCon/ToolBox
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.Smart_Console = ((SmartConsole.MainWindow)(target));
     return;
     case 2:
     this.HeaderPanel = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 3:
     this.MachineDetailsHolder = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 4:
     this.button_SolutionBuilderOps = ((System.Windows.Controls.Button)(target));
     
     #line 17 "..\..\MainWindow.xaml"
     this.button_SolutionBuilderOps.Click += new System.Windows.RoutedEventHandler(this.button_SolutionBuilderOps_Click);
     
     #line default
     #line hidden
     return;
     case 5:
     this.lblSbColourStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 6:
     this.button_SysOps = ((System.Windows.Controls.Button)(target));
     
     #line 32 "..\..\MainWindow.xaml"
     this.button_SysOps.Click += new System.Windows.RoutedEventHandler(this.button_SysOps_Click);
     
     #line default
     #line hidden
     return;
     case 7:
     this.lblSysOpsColourStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 8:
     this.button_ReportOps = ((System.Windows.Controls.Button)(target));
     
     #line 49 "..\..\MainWindow.xaml"
     this.button_ReportOps.Click += new System.Windows.RoutedEventHandler(this.button_ReportOps_Click);
     
     #line default
     #line hidden
     return;
     case 9:
     this.lblDashColourStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 10:
     this.btn_AnalystLogin = ((System.Windows.Controls.Button)(target));
     
     #line 73 "..\..\MainWindow.xaml"
     this.btn_AnalystLogin.Click += new System.Windows.RoutedEventHandler(this.btn_AnalystLogin_Click);
     
     #line default
     #line hidden
     return;
     case 11:
     this.btn_QuickView = ((System.Windows.Controls.Button)(target));
     
     #line 82 "..\..\MainWindow.xaml"
     this.btn_QuickView.Click += new System.Windows.RoutedEventHandler(this.btn_QuickView_Click);
     
     #line default
     #line hidden
     return;
     case 12:
     this.Progressbar1 = ((System.Windows.Controls.ProgressBar)(target));
     return;
     case 13:
     this.labelPercentage = ((System.Windows.Controls.Label)(target));
     return;
     case 14:
     this.tabControlContent = ((System.Windows.Controls.TabControl)(target));
     return;
     case 15:
     this.SolutionBuilderContentTab = ((System.Windows.Controls.TabItem)(target));
     return;
     case 16:
     this.SBContentPanel = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 17:
     this.btn_viewLicense = ((System.Windows.Controls.Button)(target));
     
     #line 109 "..\..\MainWindow.xaml"
     this.btn_viewLicense.Click += new System.Windows.RoutedEventHandler(this.btn_viewLicense_Click);
     
     #line default
     #line hidden
     return;
     case 18:
     this.lblViewiLicenseStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 19:
     this.btn_ExportLicenseReq = ((System.Windows.Controls.Button)(target));
     
     #line 126 "..\..\MainWindow.xaml"
     this.btn_ExportLicenseReq.Click += new System.Windows.RoutedEventHandler(this.btn_ExportLicenseReq_Click);
     
     #line default
     #line hidden
     return;
     case 20:
     this.lblExportLicenseReqStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 21:
     this.btn_ImportLicense = ((System.Windows.Controls.Button)(target));
     
     #line 143 "..\..\MainWindow.xaml"
     this.btn_ImportLicense.Click += new System.Windows.RoutedEventHandler(this.btn_ImportLicense_Click);
     
     #line default
     #line hidden
     return;
     case 22:
     this.lblImportLicenseStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 23:
     this.btn_ExportLicense = ((System.Windows.Controls.Button)(target));
     
     #line 161 "..\..\MainWindow.xaml"
     this.btn_ExportLicense.Click += new System.Windows.RoutedEventHandler(this.btn_ExportLicense_Click);
     
     #line default
     #line hidden
     return;
     case 24:
     this.lblExportLicenseStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 25:
     this.btn_RestartService = ((System.Windows.Controls.Button)(target));
     
     #line 179 "..\..\MainWindow.xaml"
     this.btn_RestartService.Click += new System.Windows.RoutedEventHandler(this.btn_RestartService_Click);
     
     #line default
     #line hidden
     return;
     case 26:
     this.lblRestartServiceStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 27:
     this.btn_StopService = ((System.Windows.Controls.Button)(target));
     
     #line 196 "..\..\MainWindow.xaml"
     this.btn_StopService.Click += new System.Windows.RoutedEventHandler(this.btn_StopService_Click);
     
     #line default
     #line hidden
     return;
     case 28:
     this.lblStopServiceStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 29:
     this.btn_ViewURLS = ((System.Windows.Controls.Button)(target));
     
     #line 213 "..\..\MainWindow.xaml"
     this.btn_ViewURLS.Click += new System.Windows.RoutedEventHandler(this.btn_ViewURLS_Click);
     
     #line default
     #line hidden
     return;
     case 30:
     this.lblViewURlsStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 31:
     this.SB_SubMenutabControl = ((System.Windows.Controls.TabControl)(target));
     return;
     case 32:
     this.viewlicenseTab = ((System.Windows.Controls.TabItem)(target));
     return;
     case 33:
     this.lblLicenseStatus = ((System.Windows.Controls.Label)(target));
     return;
     case 34:
     this.lbelCustomerName = ((System.Windows.Controls.Label)(target));
     return;
     case 35:
     this.textBoxCustomerName = ((System.Windows.Controls.TextBox)(target));
     return;
     case 36:
     this.lbelAccountNum = ((System.Windows.Controls.Label)(target));
     return;
     case 37:
     this.textBoxAccountNum = ((System.Windows.Controls.TextBox)(target));
     return;
     case 38:
     this.lbelSBVersion = ((System.Windows.Controls.Label)(target));
     return;
     case 39:
     this.textBoxSBVersion = ((System.Windows.Controls.TextBox)(target));
     return;
     case 40:
     this.lbelDevices = ((System.Windows.Controls.Label)(target));
     return;
     case 41:
     this.textBoxDevices = ((System.Windows.Controls.TextBox)(target));
     return;
     case 42:
     this.lbelStartDate = ((System.Windows.Controls.Label)(target));
     return;
     case 43:
     this.textBoxStartDate = ((System.Windows.Controls.TextBox)(target));
     return;
     case 44:
     this.lbelEnddate = ((System.Windows.Controls.Label)(target));
     return;
     case 45:
     this.textBoxEndDate = ((System.Windows.Controls.TextBox)(target));
     return;
     case 46:
     this.lbelModules = ((System.Windows.Controls.Label)(target));
     return;
     case 47:
     this.textBoxModules = ((System.Windows.Controls.TextBox)(target));
     return;
     case 48:
     this.lbelInstalledOn = ((System.Windows.Controls.Label)(target));
     return;
     case 49:
     this.textBoxInstalled = ((System.Windows.Controls.TextBox)(target));
     return;
     case 50:
     this.TabEventLog = ((System.Windows.Controls.TabItem)(target));
     return;
     case 51:
     this.logTextBox = ((System.Windows.Controls.RichTextBox)(target));
     return;
     case 52:
     this.ViewURLSTab = ((System.Windows.Controls.TabItem)(target));
     return;
     case 53:
     this.lbelURL = ((System.Windows.Controls.Label)(target));
     return;
     case 54:
     this.textBoxURL = ((System.Windows.Controls.TextBox)(target));
     return;
     case 55:
     this.lbelAuthURL = ((System.Windows.Controls.Label)(target));
     return;
     case 56:
     this.textBoxAuthURL = ((System.Windows.Controls.TextBox)(target));
     return;
     case 57:
     this.lbelWithDNSName = ((System.Windows.Controls.Label)(target));
     return;
     case 58:
     this.textBoxWithDNSName = ((System.Windows.Controls.TextBox)(target));
     return;
     case 59:
     this.lbelHideWithDNSName = ((System.Windows.Controls.Label)(target));
     return;
     case 60:
     this.textBoxHideWithDNSName = ((System.Windows.Controls.TextBox)(target));
     return;
     case 61:
     this.AnalystLoginTab = ((System.Windows.Controls.TabItem)(target));
     return;
     case 62:
     this.AnalystLogin = ((System.Windows.Controls.Grid)(target));
     return;
     case 63:
     this.AnalystLoginPanel = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 64:
     this.LoginUsernameTextBox = ((System.Windows.Controls.TextBox)(target));
     
     #line 328 "..\..\MainWindow.xaml"
     this.LoginUsernameTextBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.LoginUsernameTextBox_TextChanged);
     
     #line default
     #line hidden
     return;
     case 65:
     this.textBoxPassword = ((System.Windows.Controls.PasswordBox)(target));
     
     #line 330 "..\..\MainWindow.xaml"
     this.textBoxPassword.KeyDown += new System.Windows.Input.KeyEventHandler(this.textBoxPassword_KeyDown);
     
     #line default
     #line hidden
     return;
     case 66:
     this.Login = ((System.Windows.Controls.Button)(target));
     
     #line 331 "..\..\MainWindow.xaml"
     this.Login.Click += new System.Windows.RoutedEventHandler(this.Login_Click);
     
     #line default
     #line hidden
     return;
     case 67:
     this.lblAccess = ((System.Windows.Controls.Label)(target));
     return;
     case 68:
     this.groupBoxDocuflowOps = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 69:
     this.DocuflowOpsPanel = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 70:
     this.SetResFolderPath = ((System.Windows.Controls.Button)(target));
     
     #line 345 "..\..\MainWindow.xaml"
     this.SetResFolderPath.Click += new System.Windows.RoutedEventHandler(this.SetResFolderPath_Click);
     
     #line default
     #line hidden
     return;
     case 71:
     this.ViewResFolderPath = ((System.Windows.Controls.Button)(target));
     
     #line 354 "..\..\MainWindow.xaml"
     this.ViewResFolderPath.Click += new System.Windows.RoutedEventHandler(this.ViewResFolderPath_Click);
     
     #line default
     #line hidden
     return;
     case 72:
     this.ViewXMLLicense = ((System.Windows.Controls.Button)(target));
     
     #line 363 "..\..\MainWindow.xaml"
     this.ViewXMLLicense.Click += new System.Windows.RoutedEventHandler(this.ViewXMLLicense_Click);
     
     #line default
     #line hidden
     return;
     case 73:
     this.OpenConfigFile = ((System.Windows.Controls.Button)(target));
     
     #line 372 "..\..\MainWindow.xaml"
     this.OpenConfigFile.Click += new System.Windows.RoutedEventHandler(this.OpenConfigFile_Click);
     
     #line default
     #line hidden
     return;
     case 74:
     this.OpenDesigner = ((System.Windows.Controls.Button)(target));
     
     #line 381 "..\..\MainWindow.xaml"
     this.OpenDesigner.Click += new System.Windows.RoutedEventHandler(this.OpenDesigner_Click);
     
     #line default
     #line hidden
     return;
     case 75:
     this.GroupSetResPath = ((System.Windows.Controls.Border)(target));
     return;
     case 76:
     this.textBoxResFolderpath = ((System.Windows.Controls.TextBox)(target));
     
     #line 395 "..\..\MainWindow.xaml"
     this.textBoxResFolderpath.KeyDown += new System.Windows.Input.KeyEventHandler(this.textBoxResFolderpath_KeyDown);
     
     #line default
     #line hidden
     return;
     case 77:
     this.buttonSetResFolder = ((System.Windows.Controls.Button)(target));
     
     #line 396 "..\..\MainWindow.xaml"
     this.buttonSetResFolder.Click += new System.Windows.RoutedEventHandler(this.buttonSetResFolder_Click);
     
     #line default
     #line hidden
     return;
     case 78:
     this.EventLoggerTextBox = ((System.Windows.Controls.RichTextBox)(target));
     return;
     case 79:
     this.SystemContentTab = ((System.Windows.Controls.TabItem)(target));
     return;
     case 80:
     this.SystemContentPanel = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 81:
     this.btn_RetriveLogs = ((System.Windows.Controls.Button)(target));
     
     #line 421 "..\..\MainWindow.xaml"
     this.btn_RetriveLogs.Click += new System.Windows.RoutedEventHandler(this.btn_RetriveLogs_Click);
     
     #line default
     #line hidden
     return;
     case 82:
     this.lblViewLogsStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 83:
     this.btn_OpenServices = ((System.Windows.Controls.Button)(target));
     
     #line 438 "..\..\MainWindow.xaml"
     this.btn_OpenServices.Click += new System.Windows.RoutedEventHandler(this.btn_OpenServices_Click);
     
     #line default
     #line hidden
     return;
     case 84:
     this.lblOpenServicesStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 85:
     this.btn_EventViewer = ((System.Windows.Controls.Button)(target));
     
     #line 455 "..\..\MainWindow.xaml"
     this.btn_EventViewer.Click += new System.Windows.RoutedEventHandler(this.btn_EventViewer_Click);
     
     #line default
     #line hidden
     return;
     case 86:
     this.lblOpenEvntVwrStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 87:
     this.btn_TaskManager = ((System.Windows.Controls.Button)(target));
     
     #line 472 "..\..\MainWindow.xaml"
     this.btn_TaskManager.Click += new System.Windows.RoutedEventHandler(this.btn_TaskManager_Click);
     
     #line default
     #line hidden
     return;
     case 88:
     this.lblOpenTaskMangerStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 89:
     this.btn_Registry = ((System.Windows.Controls.Button)(target));
     
     #line 489 "..\..\MainWindow.xaml"
     this.btn_Registry.Click += new System.Windows.RoutedEventHandler(this.btn_Registry_Click);
     
     #line default
     #line hidden
     return;
     case 90:
     this.lblOpenRegeditStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 91:
     this.btn_ViewHostDetails = ((System.Windows.Controls.Button)(target));
     
     #line 506 "..\..\MainWindow.xaml"
     this.btn_ViewHostDetails.Click += new System.Windows.RoutedEventHandler(this.btn_ViewHostDetails_Click);
     
     #line default
     #line hidden
     return;
     case 92:
     this.lblHostdetailsStrip = ((System.Windows.Controls.Label)(target));
     return;
     case 93:
     this.SystemSubContentTab = ((System.Windows.Controls.TabControl)(target));
     return;
     case 94:
     this.SystemEventLogger = ((System.Windows.Controls.TabItem)(target));
     return;
     case 95:
     this.SystemlogTextBox = ((System.Windows.Controls.RichTextBox)(target));
     return;
     case 96:
     this.EventViewerTab = ((System.Windows.Controls.TabItem)(target));
     return;
     case 97:
     this.SelectLogsPanel = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 98:
     this.comboBoxEve = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 99:
     this.ButtonView = ((System.Windows.Controls.Button)(target));
     
     #line 546 "..\..\MainWindow.xaml"
     this.ButtonView.Click += new System.Windows.RoutedEventHandler(this.ButtonView_Click);
     
     #line default
     #line hidden
     return;
     case 100:
     this.ButtonClear = ((System.Windows.Controls.Button)(target));
     
     #line 555 "..\..\MainWindow.xaml"
     this.ButtonClear.Click += new System.Windows.RoutedEventHandler(this.ButtonClear_Click);
     
     #line default
     #line hidden
     return;
     case 101:
     this.EventViewerlogTextBox = ((System.Windows.Controls.RichTextBox)(target));
     return;
     case 102:
     this.DisplayHostDetails = ((System.Windows.Controls.TabItem)(target));
     return;
     case 103:
     this.HostDetailsPanel = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 104:
     this.Hostdetails = ((System.Windows.Controls.TabControl)(target));
     return;
     case 105:
     this.NestedHostdetailsTab = ((System.Windows.Controls.TabItem)(target));
     return;
     case 106:
     this.HostDetailsGrid = ((System.Windows.Controls.Grid)(target));
     return;
     case 107:
     this.lbelFQDN = ((System.Windows.Controls.Label)(target));
     return;
     case 108:
     this.textBoxFQDN = ((System.Windows.Controls.TextBox)(target));
     return;
     case 109:
     this.lbelFQDUN = ((System.Windows.Controls.Label)(target));
     return;
     case 110:
     this.textBoxFQDUN = ((System.Windows.Controls.TextBox)(target));
     return;
     case 111:
     this.lbelDomain = ((System.Windows.Controls.Label)(target));
     return;
     case 112:
     this.textBoxDomain = ((System.Windows.Controls.TextBox)(target));
     return;
     case 113:
     this.lbelMachineName = ((System.Windows.Controls.Label)(target));
     return;
     case 114:
     this.textBoxMachineName = ((System.Windows.Controls.TextBox)(target));
     return;
     case 115:
     this.lbelMachineIP = ((System.Windows.Controls.Label)(target));
     return;
     case 116:
     this.textBoxMachineIP = ((System.Windows.Controls.TextBox)(target));
     return;
     case 117:
     this.lbelCurrentUser = ((System.Windows.Controls.Label)(target));
     return;
     case 118:
     this.textBoxCurrentUser = ((System.Windows.Controls.TextBox)(target));
     return;
     case 119:
     this.OSDetailsGrid = ((System.Windows.Controls.Grid)(target));
     return;
     case 120:
     this.lbelOS = ((System.Windows.Controls.Label)(target));
     return;
     case 121:
     this.textBoxOS = ((System.Windows.Controls.TextBox)(target));
     return;
     case 122:
     this.lbelVersion = ((System.Windows.Controls.Label)(target));
     return;
     case 123:
     this.textBoxVersion = ((System.Windows.Controls.TextBox)(target));
     return;
     case 124:
     this.lbelServicePack = ((System.Windows.Controls.Label)(target));
     return;
     case 125:
     this.textBoxServicePack = ((System.Windows.Controls.TextBox)(target));
     return;
     case 126:
     this.lbelBits = ((System.Windows.Controls.Label)(target));
     return;
     case 127:
     this.textBoxbits = ((System.Windows.Controls.TextBox)(target));
     return;
     case 128:
     this.lbelLastRestart = ((System.Windows.Controls.Label)(target));
     return;
     case 129:
     this.textBoxLastRestart = ((System.Windows.Controls.TextBox)(target));
     return;
     case 130:
     this.lbelTotalMemory = ((System.Windows.Controls.Label)(target));
     return;
     case 131:
     this.textBoxTotalMemory = ((System.Windows.Controls.TextBox)(target));
     return;
     case 132:
     this.CPUDetailsGrid = ((System.Windows.Controls.Grid)(target));
     return;
     case 133:
     this.lbelProcessInfo = ((System.Windows.Controls.Label)(target));
     return;
     case 134:
     this.textBoxProcessInfo = ((System.Windows.Controls.TextBox)(target));
     return;
     case 135:
     this.lbelNumCores = ((System.Windows.Controls.Label)(target));
     return;
     case 136:
     this.textBoxNumCores = ((System.Windows.Controls.TextBox)(target));
     return;
     case 137:
     this.lbelLogicProcess = ((System.Windows.Controls.Label)(target));
     return;
     case 138:
     this.textBoxLogicProcessor = ((System.Windows.Controls.TextBox)(target));
     return;
     case 139:
     this.lbelArchitecture = ((System.Windows.Controls.Label)(target));
     return;
     case 140:
     this.textBoxArchitec = ((System.Windows.Controls.TextBox)(target));
     return;
     case 141:
     this.DashBoardTab = ((System.Windows.Controls.TabItem)(target));
     return;
     case 142:
     this.SplitCanvas = ((System.Windows.Controls.Grid)(target));
     return;
     case 143:
     this.GridToHoldCard = ((System.Windows.Controls.Grid)(target));
     return;
     case 144:
     this.JobGrid = ((System.Windows.Controls.Grid)(target));
     return;
     case 145:
     this.lblSetTotalJobCount = ((System.Windows.Controls.Label)(target));
     return;
     case 146:
     this.lblSetInitialJobCount = ((System.Windows.Controls.Label)(target));
     return;
     case 147:
     this.lblSetPorcessingJobCount = ((System.Windows.Controls.Label)(target));
     return;
     case 148:
     this.lblSetCompletedJobCount = ((System.Windows.Controls.Label)(target));
     return;
     case 149:
     this.lblSetFailedJobCount = ((System.Windows.Controls.Label)(target));
     return;
     case 150:
     this.VolumeGrid = ((System.Windows.Controls.Grid)(target));
     return;
     case 151:
     this.lblSetPDFACount = ((System.Windows.Controls.Label)(target));
     return;
     case 152:
     this.lblSetTifJobCount = ((System.Windows.Controls.Label)(target));
     return;
     case 153:
     this.lblSetJpegCount = ((System.Windows.Controls.Label)(target));
     return;
     case 154:
     this.lblSetWordCount = ((System.Windows.Controls.Label)(target));
     return;
     case 155:
     this.lblSetExcelJobCount = ((System.Windows.Controls.Label)(target));
     return;
     case 156:
     this.lblSetPDFCount = ((System.Windows.Controls.Label)(target));
     return;
     case 157:
     this.lblSetTotalPageCount = ((System.Windows.Controls.Label)(target));
     return;
     case 158:
     this.TabContentFilters = ((System.Windows.Controls.TabControl)(target));
     return;
     case 159:
     this.MonthComboBox = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 160:
     this.ComboMonth00 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 161:
     this.ComboMonth01 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 162:
     this.ComboMonth02 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 163:
     this.ComboMonth03 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 164:
     this.ComboMonth04 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 165:
     this.ComboMonth05 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 166:
     this.ComboMonth06 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 167:
     this.ComboMonth07 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 168:
     this.ComboMonth08 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 169:
     this.ComboMonth09 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 170:
     this.ComboMonth10 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 171:
     this.ComboMonth11 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 172:
     this.ComboMonth12 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 173:
     this.PrinterIPComboBox = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 174:
     this.PrinterIPComboBox00 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 175:
     this.ServerNameComboBox = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 176:
     this.ServerComboBox00 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 177:
     this.UserNameComboBox = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 178:
     this.UserNameComboBox00 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 179:
     this.JobFilterSubmitButton = ((System.Windows.Controls.Button)(target));
     
     #line 884 "..\..\MainWindow.xaml"
     this.JobFilterSubmitButton.Click += new System.Windows.RoutedEventHandler(this.JobFilterSubmitButton_Click);
     
     #line default
     #line hidden
     return;
     case 180:
     this.JobFilterClearButton = ((System.Windows.Controls.Button)(target));
     
     #line 892 "..\..\MainWindow.xaml"
     this.JobFilterClearButton.Click += new System.Windows.RoutedEventHandler(this.JobFilterClearButton_Click);
     
     #line default
     #line hidden
     return;
     case 181:
     this.ExportJobFilterSubmitButton = ((System.Windows.Controls.Button)(target));
     
     #line 900 "..\..\MainWindow.xaml"
     this.ExportJobFilterSubmitButton.Click += new System.Windows.RoutedEventHandler(this.JobFilterSubmitButton_Click);
     
     #line default
     #line hidden
     return;
     case 182:
     this.VolumeMonthComboBox = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 183:
     this.VolumeComboMonth00 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 184:
     this.YearComboBox = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 185:
     this.YearComboBox00 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 186:
     this.VolumenServerNameComboBox = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 187:
     this.ServerVolumeComboBox00 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 188:
     this.DateFromComboBox = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 189:
     this.DateFromComboBox00 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 190:
     this.DateToComboBox = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 191:
     this.DateToComboBox00 = ((System.Windows.Controls.ComboBoxItem)(target));
     return;
     case 192:
     this.VolumeFilterSubmitButton = ((System.Windows.Controls.Button)(target));
     
     #line 946 "..\..\MainWindow.xaml"
     this.VolumeFilterSubmitButton.Click += new System.Windows.RoutedEventHandler(this.VolumeFilterSubmitButton_Click);
     
     #line default
     #line hidden
     return;
     case 193:
     this.VolumeClearFilterSubmitButton = ((System.Windows.Controls.Button)(target));
     
     #line 954 "..\..\MainWindow.xaml"
     this.VolumeClearFilterSubmitButton.Click += new System.Windows.RoutedEventHandler(this.VolumeClearFilterSubmitButton_Click);
     
     #line default
     #line hidden
     return;
     case 194:
     this.DatabaseConnectionLog = ((System.Windows.Controls.TabItem)(target));
     return;
     case 195:
     this.LogDatabaseEvents = ((System.Windows.Controls.RichTextBox)(target));
     return;
     case 196:
     this.verionsString = ((System.Windows.Controls.Label)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #29
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

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

            #line default
            #line hidden
                return;

            case 2:

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

            #line default
            #line hidden
                return;

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

            #line 24 "..\..\MainWindow.xaml"
                this.English.Click += new System.Windows.RoutedEventHandler(this.English_Click);

            #line default
            #line hidden
                return;

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

            #line 27 "..\..\MainWindow.xaml"
                this.Hungarian.Click += new System.Windows.RoutedEventHandler(this.Hungarian_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.GroupBoxSQL = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

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

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

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

            case 14:
                this.ImageAlertExe = ((System.Windows.Controls.ContentControl)(target));
                return;

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

            case 16:
                this.ImageAlert = ((System.Windows.Controls.ContentControl)(target));
                return;

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

            case 18:

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

            #line default
            #line hidden
                return;

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

            #line 132 "..\..\MainWindow.xaml"
                this.ButtonSave.Click += new System.Windows.RoutedEventHandler(this.SaveButton_Click);

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

            #line 9 "..\..\Company.xaml"
                ((System.Windows.Controls.Grid)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Grid_Loaded_1);

            #line default
            #line hidden
                return;

            case 2:
                this.TabDepartament = ((System.Windows.Controls.TabItem)(target));
                return;

            case 3:

            #line 35 "..\..\Company.xaml"
                ((System.Windows.Controls.Grid)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Grid_Loaded);

            #line default
            #line hidden
                return;

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

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

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

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

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

            #line 66 "..\..\Company.xaml"
                this.AddDepartament.Click += new System.Windows.RoutedEventHandler(this.AddDepartament_Click);

            #line default
            #line hidden
                return;

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

            #line 71 "..\..\Company.xaml"
                this.AddProject.Click += new System.Windows.RoutedEventHandler(this.AddProject_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.Information = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            case 12:
                this.TabCustoms = ((System.Windows.Controls.TabItem)(target));
                return;

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

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

            #line 119 "..\..\Company.xaml"
                this.UploadLogo.Click += new System.Windows.RoutedEventHandler(this.UploadLogo_Click);

            #line default
            #line hidden
                return;

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

            #line 128 "..\..\Company.xaml"
                this.Newemp.Click += new System.Windows.RoutedEventHandler(this.Newemp_Click);

            #line default
            #line hidden
                return;

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

            #line 137 "..\..\Company.xaml"
                this.remcomp.Click += new System.Windows.RoutedEventHandler(this.remcomp_Click);

            #line default
            #line hidden
                return;

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

            #line 146 "..\..\Company.xaml"
                this.Sheldue.Click += new System.Windows.RoutedEventHandler(this.Sheldue_Click);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

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

            #line 182 "..\..\Company.xaml"
                this.accrights.Click += new System.Windows.RoutedEventHandler(this.accrights_Click);

            #line default
            #line hidden
                return;

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

            #line 205 "..\..\Company.xaml"
                this.BTNExit.Click += new System.Windows.RoutedEventHandler(this.BTNExit_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #31
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.mWin = ((pSHA_Keccak.MainWindow)(target));
                return;

            case 2:
                this.Top_menu = ((System.Windows.Controls.Menu)(target));
                return;

            case 3:
                this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 4:
                this.rtb_Input = ((System.Windows.Controls.RichTextBox)(target));
                return;

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

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

            #line default
            #line hidden
                return;

            case 6:
                this.radioButton1 = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 7:
                this.radioButton2 = ((System.Windows.Controls.RadioButton)(target));
                return;

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

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

            case 10:
                this.gBox_Hash = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

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

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

            case 18:
                this.statusBar1 = ((System.Windows.Controls.Primitives.StatusBar)(target));
                return;

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

            #line 57 "..\..\..\MainWindow.xaml"
                this.chBox_HMAC.Checked += new System.Windows.RoutedEventHandler(this.chBox_HMAC_Checked);

            #line default
            #line hidden

            #line 57 "..\..\..\MainWindow.xaml"
                this.chBox_HMAC.Unchecked += new System.Windows.RoutedEventHandler(this.chBox_HMAC_Unchecked);

            #line default
            #line hidden
                return;

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

            case 21:
                this.rB_HexHesh = ((System.Windows.Controls.RadioButton)(target));

            #line 59 "..\..\..\MainWindow.xaml"
                this.rB_HexHesh.Checked += new System.Windows.RoutedEventHandler(this.rB_HexHesh_Checked);

            #line default
            #line hidden
                return;

            case 22:
                this.rB_BinHesh = ((System.Windows.Controls.RadioButton)(target));

            #line 60 "..\..\..\MainWindow.xaml"
                this.rB_BinHesh.Checked += new System.Windows.RoutedEventHandler(this.rB_BinHesh_Checked);

            #line default
            #line hidden
                return;

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

            #line 62 "..\..\..\MainWindow.xaml"
                this.buttClear_HMAC.Click += new System.Windows.RoutedEventHandler(this.buttClear_HMAC_Click);

            #line default
            #line hidden
                return;

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

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

            #line 64 "..\..\..\MainWindow.xaml"
                this.btClearHash.Click += new System.Windows.RoutedEventHandler(this.btClearHash_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #32
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.gridMain = ((System.Windows.Controls.Grid)(target));
                return;

            case 2:
                this.cnvNewGame = ((System.Windows.Controls.Canvas)(target));
                return;

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

            #line 17 "..\..\YahtzeeWindow.xaml"
                this.txtNewGame.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberValidationTextBox);

            #line default
            #line hidden
                return;

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

            #line 18 "..\..\YahtzeeWindow.xaml"
                this.btn2NewGame.Click += new System.Windows.RoutedEventHandler(this.btn2NewGame_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.grpbNewGame = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 6:
                this.expOptions = ((System.Windows.Controls.Expander)(target));
                return;

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

            #line 24 "..\..\YahtzeeWindow.xaml"
                this.btnNewGame.Click += new System.Windows.RoutedEventHandler(this.btnNewGame_Click);

            #line default
            #line hidden
                return;

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

            #line 25 "..\..\YahtzeeWindow.xaml"
                this.btnResetGame.Click += new System.Windows.RoutedEventHandler(this.btnResetGame_Click);

            #line default
            #line hidden
                return;

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

            #line 26 "..\..\YahtzeeWindow.xaml"
                this.btnHighscores.Click += new System.Windows.RoutedEventHandler(this.btnHighscores_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.cnvMain = ((System.Windows.Controls.Canvas)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #33
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.userTab = ((System.Windows.Controls.TabItem)(target));
                return;

            case 2:
                this.locationBox = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 25 "..\..\MainWindow.xaml"
                this.userIds.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.userIds_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            case 20:
                this.userFriendTipsGrid = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 21:
                this.userFriendsList = ((System.Windows.Controls.DataGrid)(target));
                return;

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

            #line 46 "..\..\MainWindow.xaml"
                this.removeFriendButton.Click += new System.Windows.RoutedEventHandler(this.removeFriendButton_Click);

            #line default
            #line hidden
                return;

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

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

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

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

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

            #line 52 "..\..\MainWindow.xaml"
                this.setLocationButton.Click += new System.Windows.RoutedEventHandler(this.setLocationButton_Click);

            #line default
            #line hidden
                return;

            case 28:
                this.friendBox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 29:
                this.reviewBox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 30:
                this.infoBox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 31:
                this.setUserBox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 32:
                this.businessTab = ((System.Windows.Controls.TabItem)(target));
                return;

            case 33:
                this.groupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            case 35:
                this.dayOfWeekComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            case 37:
                this.fromComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            case 39:
                this.toComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 40:
                this.resultGroupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 41:
                this.BusinessGrid = ((System.Windows.Controls.DataGrid)(target));

            #line 86 "..\..\MainWindow.xaml"
                this.BusinessGrid.SelectedCellsChanged += new System.Windows.Controls.SelectedCellsChangedEventHandler(this.BusinessGrid_SelectedCellsChanged);

            #line default
            #line hidden
                return;

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

            case 43:
                this.locationGroupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 44:
                this.StateList = ((System.Windows.Controls.ComboBox)(target));

            #line 94 "..\..\MainWindow.xaml"
                this.StateList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.StateListSelectionChanged);

            #line default
            #line hidden
                return;

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

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

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

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

            case 49:
                this.CityList = ((System.Windows.Controls.ListBox)(target));

            #line 99 "..\..\MainWindow.xaml"
                this.CityList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.CityList_SelectionChanged);

            #line default
            #line hidden
                return;

            case 50:
                this.ZipList = ((System.Windows.Controls.ListBox)(target));

            #line 100 "..\..\MainWindow.xaml"
                this.ZipList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ZipList_SelectionChanged);

            #line default
            #line hidden
                return;

            case 51:
                this.CategoryList = ((System.Windows.Controls.ListBox)(target));
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 103 "..\..\MainWindow.xaml"
                this.RemoveButton.Click += new System.Windows.RoutedEventHandler(this.RemoveButton_Click);

            #line default
            #line hidden
                return;

            case 54:
                this.SelectedCategoriesList = ((System.Windows.Controls.ListBox)(target));
                return;

            case 55:
                this.SearchButton = ((System.Windows.Controls.Button)(target));

            #line 105 "..\..\MainWindow.xaml"
                this.SearchButton.Click += new System.Windows.RoutedEventHandler(this.SearchButton_Click);

            #line default
            #line hidden

            #line 105 "..\..\MainWindow.xaml"
                this.SearchButton.MouseEnter += new System.Windows.Input.MouseEventHandler(this.SearchButton_MouseEnter);

            #line default
            #line hidden

            #line 105 "..\..\MainWindow.xaml"
                this.SearchButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.SearchButton_MouseLeave);

            #line default
            #line hidden
                return;

            case 56:
                this.priceGroupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 57:
                this.oneDollar = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 58:
                this.twoDollar = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 59:
                this.threeDollar = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 60:
                this.fourDollar = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 61:
                this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 62:
                this.creditCardCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 63:
                this.reservationCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 64:
                this.wheelchairAccesibleCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 65:
                this.outdoorCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 66:
                this.goodForKidsCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 67:
                this.goodForGroupsCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 68:
                this.deliveryCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 69:
                this.takeOutCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 70:
                this.wifiCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 71:
                this.bikeParkingCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 72:
                this.groupBox2 = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 73:
                this.breakfastCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 74:
                this.brunchCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 75:
                this.lunchCheckbox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 76:
                this.dinnerCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 77:
                this.dessertrCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 78:
                this.lateNightCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 79:
                this.groupBox3 = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 80:
                this.sortComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 81:
                this.businessTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 82:
                this.checkinButton = ((System.Windows.Controls.Button)(target));

            #line 148 "..\..\MainWindow.xaml"
                this.checkinButton.Click += new System.Windows.RoutedEventHandler(this.checkinButton_Click);

            #line default
            #line hidden
                return;

            case 83:
                this.reviewTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 84:
                this.ratingGroupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 85:
                this.ratingComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 86:
                this.addReviewButton = ((System.Windows.Controls.Button)(target));

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

            #line default
            #line hidden
                return;

            case 87:
                this.groupBox4 = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 88:
                this.showCheckinsButton = ((System.Windows.Controls.Button)(target));

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

            #line default
            #line hidden
                return;

            case 89:
                this.showReviewsButton = ((System.Windows.Controls.Button)(target));

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

            #line default
            #line hidden
                return;

            case 90:
                this.numberOfBusinessesButton = ((System.Windows.Controls.Button)(target));

            #line 160 "..\..\MainWindow.xaml"
                this.numberOfBusinessesButton.Click += new System.Windows.RoutedEventHandler(this.numberOfBusinessesButton_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #34
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.ButtonOperator = ((System.Windows.Controls.Button)(target));

            #line 66 "..\..\HomePage.xaml"
                this.ButtonOperator.Click += new System.Windows.RoutedEventHandler(this.ButtonOperator_Click);

            #line default
            #line hidden
                return;

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

            #line 73 "..\..\HomePage.xaml"
                this.ButtonManager.Click += new System.Windows.RoutedEventHandler(this.ButtonManager_Click);

            #line default
            #line hidden
                return;

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

            #line 80 "..\..\HomePage.xaml"
                this.ButtonAdministrator.Click += new System.Windows.RoutedEventHandler(this.ButtonAdministrator_Click);

            #line default
            #line hidden
                return;

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

            #line 103 "..\..\HomePage.xaml"
                this.ButtonConnection.Click += new System.Windows.RoutedEventHandler(this.ButtonConnection_Click);

            #line default
            #line hidden
                return;

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

            #line 104 "..\..\HomePage.xaml"
                this.ButtonDeconnection.Click += new System.Windows.RoutedEventHandler(this.ButtonDeconnection_Click);

            #line default
            #line hidden
                return;

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

            case 7:
                this.PasswordBoxProfile = ((System.Windows.Controls.PasswordBox)(target));
                return;

            case 8:
                this.GroupBoxModifyPassword = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            #line 116 "..\..\HomePage.xaml"
                this.ButtonValidate.Click += new System.Windows.RoutedEventHandler(this.ButtonValidate_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.PasswordBoxModify = ((System.Windows.Controls.PasswordBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #35
0
ファイル: Level1.g.cs プロジェクト: MichaelMagDii/FoodCost
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.Level1GBX = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

            #line 66 "..\..\Level1.xaml"
                this.NewBtn.Click += new System.Windows.RoutedEventHandler(this.NewButtonClicked);

            #line default
            #line hidden
                return;

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

            #line 72 "..\..\Level1.xaml"
                this.SaveBtn.Click += new System.Windows.RoutedEventHandler(this.SaveBtn_Click);

            #line default
            #line hidden
                return;

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

            #line 78 "..\..\Level1.xaml"
                this.UpdateBtn.Click += new System.Windows.RoutedEventHandler(this.UpdateBtn_Click);

            #line default
            #line hidden
                return;

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

            #line 84 "..\..\Level1.xaml"
                this.UndoBtn.Click += new System.Windows.RoutedEventHandler(this.UndoBtn_Click);

            #line default
            #line hidden
                return;

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

            #line 90 "..\..\Level1.xaml"
                this.DeleteBtn.Click += new System.Windows.RoutedEventHandler(this.DeleteBtn_Click);

            #line default
            #line hidden
                return;

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

            #line 108 "..\..\Level1.xaml"
                this.Level1_DGV.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.RowClicked);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #36
0
ファイル: MainWindow.g.cs プロジェクト: mansato/Gestion_Stock
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.button_exit = ((System.Windows.Controls.Button)(target));
     
     #line 15 "..\..\MainWindow.xaml"
     this.button_exit.Click += new System.Windows.RoutedEventHandler(this.button_exit_Click);
     
     #line default
     #line hidden
     return;
     case 2:
     this.tabControl = ((System.Windows.Controls.TabControl)(target));
     return;
     case 3:
     this.Stock = ((System.Windows.Controls.TabItem)(target));
     return;
     case 4:
     this.groupBox = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 5:
     this.label = ((System.Windows.Controls.Label)(target));
     return;
     case 6:
     this.comboBox = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 7:
     this.groupBox_Copy = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 8:
     this.label_champ = ((System.Windows.Controls.Label)(target));
     return;
     case 9:
     this.comboBox1 = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 10:
     this.label1_Copy = ((System.Windows.Controls.Label)(target));
     return;
     case 11:
     this.label1_Copy1 = ((System.Windows.Controls.Label)(target));
     return;
     case 12:
     this.textBox = ((System.Windows.Controls.TextBox)(target));
     return;
     case 13:
     this.button3 = ((System.Windows.Controls.Button)(target));
     return;
     case 14:
     this.btnRafraichir = ((System.Windows.Controls.Button)(target));
     return;
     case 15:
     this.btnAffImage = ((System.Windows.Controls.Button)(target));
     return;
     case 16:
     this.btnAlarme = ((System.Windows.Controls.Button)(target));
     return;
     case 17:
     this.btnAjouter = ((System.Windows.Controls.Button)(target));
     return;
     case 18:
     this.btnModifier = ((System.Windows.Controls.Button)(target));
     return;
     case 19:
     this.btnVentcred = ((System.Windows.Controls.Button)(target));
     return;
     case 20:
     this.groupBox_Copy1 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 21:
     this.btnEntAch = ((System.Windows.Controls.Button)(target));
     return;
     case 22:
     this.btnSortieVente = ((System.Windows.Controls.Button)(target));
     return;
     case 23:
     this.checkBox = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 24:
     this.dataGrid = ((System.Windows.Controls.DataGrid)(target));
     return;
     case 25:
     this.btnSupprall = ((System.Windows.Controls.Button)(target));
     return;
     case 26:
     this.label_ca = ((System.Windows.Controls.Label)(target));
     return;
     case 27:
     this.label_cap = ((System.Windows.Controls.Label)(target));
     return;
     case 28:
     this.label_dev = ((System.Windows.Controls.Label)(target));
     return;
     case 29:
     this.label_art = ((System.Windows.Controls.Label)(target));
     return;
     case 30:
     this.label_nb_art = ((System.Windows.Controls.Label)(target));
     return;
     case 31:
     this.btnSuppr = ((System.Windows.Controls.Button)(target));
     return;
     case 32:
     this.Entrees = ((System.Windows.Controls.TabItem)(target));
     return;
     case 33:
     this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 34:
     this.button1 = ((System.Windows.Controls.Button)(target));
     return;
     case 35:
     this.label1 = ((System.Windows.Controls.Label)(target));
     return;
     case 36:
     this.label1_Copy2 = ((System.Windows.Controls.Label)(target));
     return;
     case 37:
     this.label1_Copy3 = ((System.Windows.Controls.Label)(target));
     return;
     case 38:
     this.btn_Rafraichir_ent = ((System.Windows.Controls.Button)(target));
     return;
     case 39:
     this.checkBox1 = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 40:
     this.dataGrid1 = ((System.Windows.Controls.DataGrid)(target));
     return;
     case 41:
     this.btnSupprimerTout = ((System.Windows.Controls.Button)(target));
     return;
     case 42:
     this.btnSupprimer = ((System.Windows.Controls.Button)(target));
     return;
     case 43:
     this.btnExporter = ((System.Windows.Controls.Button)(target));
     return;
     case 44:
     this.label2 = ((System.Windows.Controls.Label)(target));
     return;
     case 45:
     this.labelMontant = ((System.Windows.Controls.Label)(target));
     return;
     case 46:
     this.label10 = ((System.Windows.Controls.Label)(target));
     return;
     case 47:
     this.labelNBEntrees = ((System.Windows.Controls.Label)(target));
     return;
     case 48:
     this.Sorties = ((System.Windows.Controls.TabItem)(target));
     return;
     case 49:
     this.groupBox1_sort = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 50:
     this.button1_sort = ((System.Windows.Controls.Button)(target));
     return;
     case 51:
     this.label1_sort = ((System.Windows.Controls.Label)(target));
     return;
     case 52:
     this.label1_Copy2_sort = ((System.Windows.Controls.Label)(target));
     return;
     case 53:
     this.label1_Copy3_sort = ((System.Windows.Controls.Label)(target));
     return;
     case 54:
     this.btn_Rafraichir_sort = ((System.Windows.Controls.Button)(target));
     return;
     case 55:
     this.checkBox1_sort = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 56:
     this.dataGrid1_sort = ((System.Windows.Controls.DataGrid)(target));
     return;
     case 57:
     this.btnSupprimerTout_sort = ((System.Windows.Controls.Button)(target));
     return;
     case 58:
     this.btnSupprimer_sort = ((System.Windows.Controls.Button)(target));
     return;
     case 59:
     this.btnExporter_sort = ((System.Windows.Controls.Button)(target));
     return;
     case 60:
     this.label2_sort = ((System.Windows.Controls.Label)(target));
     return;
     case 61:
     this.labelMontant_sort = ((System.Windows.Controls.Label)(target));
     return;
     case 62:
     this.label10_sort = ((System.Windows.Controls.Label)(target));
     return;
     case 63:
     this.labelNBEntrees_sort = ((System.Windows.Controls.Label)(target));
     return;
     case 64:
     this.Fournisseurs = ((System.Windows.Controls.TabItem)(target));
     return;
     case 65:
     this.checkBox1_fournis = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 66:
     this.groupBox2 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 67:
     this.label4 = ((System.Windows.Controls.Label)(target));
     return;
     case 68:
     this.comboBox2 = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 69:
     this.label5 = ((System.Windows.Controls.Label)(target));
     return;
     case 70:
     this.label6 = ((System.Windows.Controls.Label)(target));
     return;
     case 71:
     this.textBox1 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 72:
     this.btnRafraichirFournis = ((System.Windows.Controls.Button)(target));
     return;
     case 73:
     this.btnAjouterFournis = ((System.Windows.Controls.Button)(target));
     return;
     case 74:
     this.btnSupprimerFournis = ((System.Windows.Controls.Button)(target));
     return;
     case 75:
     this.btnModifierFournis = ((System.Windows.Controls.Button)(target));
     return;
     case 76:
     this.btnExporterFournisseur = ((System.Windows.Controls.Button)(target));
     return;
     case 77:
     this.btnSupprimerToutFournis = ((System.Windows.Controls.Button)(target));
     return;
     case 78:
     this.label7 = ((System.Windows.Controls.Label)(target));
     return;
     case 79:
     this.labelNb_fournis = ((System.Windows.Controls.Label)(target));
     return;
     case 80:
     this.dataGrid2 = ((System.Windows.Controls.DataGrid)(target));
     return;
     case 81:
     this.Rangement_Famille = ((System.Windows.Controls.TabItem)(target));
     return;
     case 82:
     this.dataGridNomRangement = ((System.Windows.Controls.DataGrid)(target));
     return;
     case 83:
     this.dataGridNomFamille = ((System.Windows.Controls.DataGrid)(target));
     return;
     case 84:
     this.label8 = ((System.Windows.Controls.Label)(target));
     return;
     case 85:
     this.checkBox2 = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 86:
     this.label9 = ((System.Windows.Controls.Label)(target));
     return;
     case 87:
     this.label11 = ((System.Windows.Controls.Label)(target));
     return;
     case 88:
     this.Rangement = ((System.Windows.Controls.Label)(target));
     return;
     case 89:
     this.dataGridNomRangement1 = ((System.Windows.Controls.DataGrid)(target));
     return;
     case 90:
     this.dataGridNomFamille1 = ((System.Windows.Controls.DataGrid)(target));
     return;
     case 91:
     this.label12 = ((System.Windows.Controls.Label)(target));
     return;
     case 92:
     this.checkBox3 = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 93:
     this.label13 = ((System.Windows.Controls.Label)(target));
     return;
     case 94:
     this.label14 = ((System.Windows.Controls.Label)(target));
     return;
     case 95:
     this.LabelRangement1 = ((System.Windows.Controls.Label)(target));
     return;
     case 96:
     this.label14_Copy = ((System.Windows.Controls.Label)(target));
     return;
     case 97:
     this.LabelFamilles = ((System.Windows.Controls.Label)(target));
     return;
     case 98:
     this.buttonAjouterRangement = ((System.Windows.Controls.Button)(target));
     return;
     case 99:
     this.buttonModifierRangement = ((System.Windows.Controls.Button)(target));
     return;
     case 100:
     this.buttonSupprimerRangement = ((System.Windows.Controls.Button)(target));
     return;
     case 101:
     this.buttonAjouterFamilles = ((System.Windows.Controls.Button)(target));
     return;
     case 102:
     this.buttonModifierFamilles = ((System.Windows.Controls.Button)(target));
     return;
     case 103:
     this.buttonSupprimerFamilles = ((System.Windows.Controls.Button)(target));
     return;
     case 104:
     this.buttonSuppRangement = ((System.Windows.Controls.Button)(target));
     return;
     case 105:
     this.buttonExporterRangement = ((System.Windows.Controls.Button)(target));
     return;
     case 106:
     this.buttonSuppFamilles = ((System.Windows.Controls.Button)(target));
     return;
     case 107:
     this.buttonExporterFamilles = ((System.Windows.Controls.Button)(target));
     return;
     case 108:
     this.Inventaire = ((System.Windows.Controls.TabItem)(target));
     return;
     case 109:
     this.groupBox_inv = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 110:
     this.label_inv = ((System.Windows.Controls.Label)(target));
     return;
     case 111:
     this.comboBox_inv = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 112:
     this.groupBox_Copy_inv = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 113:
     this.label_champ_inv = ((System.Windows.Controls.Label)(target));
     return;
     case 114:
     this.comboBox1_inv = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 115:
     this.label1_Copy_inv = ((System.Windows.Controls.Label)(target));
     return;
     case 116:
     this.label1_Copy1_inv = ((System.Windows.Controls.Label)(target));
     return;
     case 117:
     this.textBox_inv = ((System.Windows.Controls.TextBox)(target));
     return;
     case 118:
     this.button3_inv = ((System.Windows.Controls.Button)(target));
     return;
     case 119:
     this.btnRafraichir_inv = ((System.Windows.Controls.Button)(target));
     return;
     case 120:
     this.btnstart_inv = ((System.Windows.Controls.Button)(target));
     return;
     case 121:
     this.btnfin_inv = ((System.Windows.Controls.Button)(target));
     return;
     case 122:
     this.checkBox_inv = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 123:
     this.dataGrid_inv = ((System.Windows.Controls.DataGrid)(target));
     return;
     case 124:
     this.btnexport_inv = ((System.Windows.Controls.Button)(target));
     return;
     case 125:
     this.label_nbart_inv = ((System.Windows.Controls.Label)(target));
     return;
     case 126:
     this.label_nb_art_inv = ((System.Windows.Controls.Label)(target));
     return;
     case 127:
     this.btnSave_inv = ((System.Windows.Controls.Button)(target));
     return;
     case 128:
     this.label15 = ((System.Windows.Controls.Label)(target));
     return;
     case 129:
     this.label16 = ((System.Windows.Controls.Label)(target));
     return;
     case 130:
     this.label17 = ((System.Windows.Controls.Label)(target));
     return;
     case 131:
     this.label3 = ((System.Windows.Controls.Label)(target));
     return;
     case 132:
     this.button_exit_Copy = ((System.Windows.Controls.Button)(target));
     
     #line 230 "..\..\MainWindow.xaml"
     this.button_exit_Copy.Click += new System.Windows.RoutedEventHandler(this.button_exit_Click);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
コード例 #37
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.btnListaCont = ((System.Windows.Controls.Grid)(target));
                return;

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

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

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

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

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

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

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

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

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

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

            #line 30 "..\..\AgregarContrato.xaml"
                this.txtCreacion.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txtCreacion_TextChanged);

            #line default
            #line hidden
                return;

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

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

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

            #line 33 "..\..\AgregarContrato.xaml"
                this.btnAgregar.Click += new System.Windows.RoutedEventHandler(this.btnAgregar_Click);

            #line default
            #line hidden
                return;

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

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

            #line 42 "..\..\AgregarContrato.xaml"
                this.txtMonto.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txtMonto_TextChanged);

            #line default
            #line hidden
                return;

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

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

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

            #line 45 "..\..\AgregarContrato.xaml"
                this.txtFeIni.LostFocus += new System.Windows.RoutedEventHandler(this.txtFeIni_LostFocus);

            #line default
            #line hidden
                return;

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

            #line 46 "..\..\AgregarContrato.xaml"
                this.txtFeTer.LostFocus += new System.Windows.RoutedEventHandler(this.txtFeTer_LostFocus);

            #line default
            #line hidden
                return;

            case 21:
                this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

            #line 50 "..\..\AgregarContrato.xaml"
                this.cboRutAso.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cboRutAso_SelectionChanged);

            #line default
            #line hidden
                return;

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

            #line 51 "..\..\AgregarContrato.xaml"
                this.btnRut.Click += new System.Windows.RoutedEventHandler(this.btnRut_Click);

            #line default
            #line hidden
                return;

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

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

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

            #line 54 "..\..\AgregarContrato.xaml"
                this.btnRut_Copy.Click += new System.Windows.RoutedEventHandler(this.btnRut_Click);

            #line default
            #line hidden
                return;

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

            #line 55 "..\..\AgregarContrato.xaml"
                this.button.Click += new System.Windows.RoutedEventHandler(this.button_Click_1);

            #line default
            #line hidden
                return;

            case 29:
                this.cboxModalidades = ((System.Windows.Controls.ComboBox)(target));

            #line 58 "..\..\AgregarContrato.xaml"
                this.cboxModalidades.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cboxModalidades_SelectionChanged);

            #line default
            #line hidden
                return;

            case 30:
                this.txtPersonalAdic = ((System.Windows.Controls.TextBox)(target));

            #line 59 "..\..\AgregarContrato.xaml"
                this.txtPersonalAdic.LostFocus += new System.Windows.RoutedEventHandler(this.txtPersonalAdic_LostFocus);

            #line default
            #line hidden
                return;

            case 31:
                this.txtPerBase = ((System.Windows.Controls.TextBox)(target));

            #line 61 "..\..\AgregarContrato.xaml"
                this.txtPerBase.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txtPerBase_TextChanged);

            #line default
            #line hidden
                return;

            case 32:
                this.lblPerBase = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

            #line 65 "..\..\AgregarContrato.xaml"
                this.chbVegetariano.Checked += new System.Windows.RoutedEventHandler(this.chbVegetariano_Checked);

            #line default
            #line hidden
                return;

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

            #line 66 "..\..\AgregarContrato.xaml"
                this.chbAmbientacion.Checked += new System.Windows.RoutedEventHandler(this.chbAmbientacion_Checked);

            #line default
            #line hidden
                return;

            case 37:
                this.chbAmbPers = ((System.Windows.Controls.CheckBox)(target));

            #line 67 "..\..\AgregarContrato.xaml"
                this.chbAmbPers.Checked += new System.Windows.RoutedEventHandler(this.chbAmbPers_Checked);

            #line default
            #line hidden
                return;

            case 38:
                this.chbLocalOnBreak = ((System.Windows.Controls.CheckBox)(target));

            #line 68 "..\..\AgregarContrato.xaml"
                this.chbLocalOnBreak.Checked += new System.Windows.RoutedEventHandler(this.chbLocalOnBreak_Checked);

            #line default
            #line hidden
                return;

            case 39:
                this.chbLoAConvenir = ((System.Windows.Controls.CheckBox)(target));

            #line 69 "..\..\AgregarContrato.xaml"
                this.chbLoAConvenir.Checked += new System.Windows.RoutedEventHandler(this.chbLoAConvenir_Checked);

            #line default
            #line hidden
                return;

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

            case 41:
                this.cboxTipo = ((System.Windows.Controls.ComboBox)(target));

            #line 72 "..\..\AgregarContrato.xaml"
                this.cboxTipo.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cboxTipo_SelectionChanged);

            #line default
            #line hidden
                return;

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

            #line 74 "..\..\AgregarContrato.xaml"
                this.txtMontoLoCliente.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txtMontoLoCliente_TextChanged);

            #line default
            #line hidden
                return;

            case 43:
                this.chbMusica = ((System.Windows.Controls.CheckBox)(target));
                return;

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

            #line 76 "..\..\AgregarContrato.xaml"
                this.btnOPTATIVO.Click += new System.Windows.RoutedEventHandler(this.btnOPTATIVO_Click);

            #line default
            #line hidden
                return;

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

            case 46:
                this.chbLocalCliente = ((System.Windows.Controls.CheckBox)(target));
                return;

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

            #line 79 "..\..\AgregarContrato.xaml"
                this.btnModificar.Click += new System.Windows.RoutedEventHandler(this.btnModificar_Click);

            #line default
            #line hidden
                return;

            case 48:

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

            #line default
            #line hidden
                return;

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

            #line 84 "..\..\AgregarContrato.xaml"
                this.btnLimCache.Click += new System.Windows.RoutedEventHandler(this.btnLimCache_Click);

            #line default
            #line hidden
                return;

            case 50:
                this.btnDevCache = ((System.Windows.Controls.Button)(target));

            #line 85 "..\..\AgregarContrato.xaml"
                this.btnDevCache.Click += new System.Windows.RoutedEventHandler(this.btnDevCache_Click);

            #line default
            #line hidden
                return;

            case 51:
                this.btnGrCache = ((System.Windows.Controls.Button)(target));

            #line 86 "..\..\AgregarContrato.xaml"
                this.btnGrCache.Click += new System.Windows.RoutedEventHandler(this.btnGrCache_Click);

            #line default
            #line hidden
                return;

            case 52:

            #line 87 "..\..\AgregarContrato.xaml"
                ((MahApps.Metro.Controls.Tile)(target)).Click += new System.Windows.RoutedEventHandler(this.Volver);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #38
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.WIZ_BG = ((System.Windows.Controls.Grid)(target));
     return;
     case 2:
     this.wiz_label = ((System.Windows.Controls.Label)(target));
     
     #line 49 "..\..\win_wizard.xaml"
     this.wiz_label.MouseEnter += new System.Windows.Input.MouseEventHandler(this.mouse_enter);
     
     #line default
     #line hidden
     
     #line 50 "..\..\win_wizard.xaml"
     this.wiz_label.MouseLeave += new System.Windows.Input.MouseEventHandler(this.mouse_leave);
     
     #line default
     #line hidden
     return;
     case 3:
     
     #line 52 "..\..\win_wizard.xaml"
     ((System.Windows.Controls.ComboBox)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBox_SelectionChanged);
     
     #line default
     #line hidden
     return;
     case 4:
     this.wiz_pid = ((System.Windows.Controls.Label)(target));
     return;
     case 5:
     this.wiz_task = ((System.Windows.Controls.Label)(target));
     return;
     case 6:
     this.wiz_mode = ((System.Windows.Controls.Label)(target));
     return;
     case 7:
     this.wiz_trial = ((System.Windows.Controls.Label)(target));
     return;
     case 8:
     this.wiz_version = ((System.Windows.Controls.Label)(target));
     return;
     case 9:
     this.wiz_btn_start = ((System.Windows.Controls.Button)(target));
     
     #line 118 "..\..\win_wizard.xaml"
     this.wiz_btn_start.Click += new System.Windows.RoutedEventHandler(this.wiz_btn_start_Click);
     
     #line default
     #line hidden
     return;
     case 10:
     this.wiz_btn_continue = ((System.Windows.Controls.Button)(target));
     
     #line 128 "..\..\win_wizard.xaml"
     this.wiz_btn_continue.Click += new System.Windows.RoutedEventHandler(this.wiz_btn_continue_Click);
     
     #line default
     #line hidden
     return;
     case 11:
     this.wiz_btn_none = ((System.Windows.Controls.Button)(target));
     
     #line 139 "..\..\win_wizard.xaml"
     this.wiz_btn_none.Click += new System.Windows.RoutedEventHandler(this.wiz_btn_none_Click);
     
     #line default
     #line hidden
     return;
     case 12:
     this.volume_box = ((System.Windows.Controls.TextBox)(target));
     return;
     case 13:
     this.volume_submit = ((System.Windows.Controls.Button)(target));
     
     #line 170 "..\..\win_wizard.xaml"
     this.volume_submit.Click += new System.Windows.RoutedEventHandler(this.volume_submit_Click);
     
     #line default
     #line hidden
     return;
     case 14:
     this.txt_box_pid = ((System.Windows.Controls.TextBox)(target));
     return;
     case 15:
     this.btn_pid_submit = ((System.Windows.Controls.Button)(target));
     
     #line 185 "..\..\win_wizard.xaml"
     this.btn_pid_submit.Click += new System.Windows.RoutedEventHandler(this.btn_pid_submit_Click);
     
     #line default
     #line hidden
     return;
     case 16:
     
     #line 189 "..\..\win_wizard.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.load_subj_Click);
     
     #line default
     #line hidden
     return;
     case 17:
     
     #line 193 "..\..\win_wizard.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.hide_border_Click);
     
     #line default
     #line hidden
     return;
     case 18:
     this.jump_trial = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 19:
     this.jump_box = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 20:
     this.jump_box_btn = ((System.Windows.Controls.Button)(target));
     
     #line 218 "..\..\win_wizard.xaml"
     this.jump_box_btn.Click += new System.Windows.RoutedEventHandler(this.jump_box_btn_Click);
     
     #line default
     #line hidden
     return;
     case 21:
     this.Wiz_Tab = ((System.Windows.Controls.TabControl)(target));
     return;
     case 22:
     this.wiz_select = ((System.Windows.Controls.Grid)(target));
     return;
     case 23:
     this.line1 = ((System.Windows.Controls.GroupBox)(target));
     
     #line 246 "..\..\win_wizard.xaml"
     this.line1.MouseEnter += new System.Windows.Input.MouseEventHandler(this.mouse_enter);
     
     #line default
     #line hidden
     
     #line 246 "..\..\win_wizard.xaml"
     this.line1.MouseLeave += new System.Windows.Input.MouseEventHandler(this.mouse_leave);
     
     #line default
     #line hidden
     
     #line 246 "..\..\win_wizard.xaml"
     this.line1.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.mouse_down);
     
     #line default
     #line hidden
     
     #line 246 "..\..\win_wizard.xaml"
     this.line1.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.mouse_up);
     
     #line default
     #line hidden
     return;
     case 24:
     this.l1_name = ((System.Windows.Controls.Label)(target));
     return;
     case 25:
     this.l1_distance = ((System.Windows.Controls.Label)(target));
     return;
     case 26:
     this.l1_cuisine = ((System.Windows.Controls.Label)(target));
     return;
     case 27:
     this.l1_rating = ((System.Windows.Controls.Image)(target));
     return;
     case 28:
     this.l1_reviews = ((System.Windows.Controls.Label)(target));
     return;
     case 29:
     this.l1_price = ((System.Windows.Controls.Label)(target));
     return;
     case 30:
     this.line2 = ((System.Windows.Controls.GroupBox)(target));
     
     #line 269 "..\..\win_wizard.xaml"
     this.line2.MouseEnter += new System.Windows.Input.MouseEventHandler(this.mouse_enter);
     
     #line default
     #line hidden
     
     #line 269 "..\..\win_wizard.xaml"
     this.line2.MouseLeave += new System.Windows.Input.MouseEventHandler(this.mouse_leave);
     
     #line default
     #line hidden
     
     #line 269 "..\..\win_wizard.xaml"
     this.line2.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.mouse_down);
     
     #line default
     #line hidden
     
     #line 269 "..\..\win_wizard.xaml"
     this.line2.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.mouse_up);
     
     #line default
     #line hidden
     return;
     case 31:
     this.l2_name = ((System.Windows.Controls.Label)(target));
     return;
     case 32:
     this.l2_distance = ((System.Windows.Controls.Label)(target));
     return;
     case 33:
     this.l2_cuisine = ((System.Windows.Controls.Label)(target));
     return;
     case 34:
     this.l2_rating = ((System.Windows.Controls.Image)(target));
     return;
     case 35:
     this.l2_reviews = ((System.Windows.Controls.Label)(target));
     return;
     case 36:
     this.l2_price = ((System.Windows.Controls.Label)(target));
     return;
     case 37:
     this.line3 = ((System.Windows.Controls.GroupBox)(target));
     
     #line 292 "..\..\win_wizard.xaml"
     this.line3.MouseEnter += new System.Windows.Input.MouseEventHandler(this.mouse_enter);
     
     #line default
     #line hidden
     
     #line 292 "..\..\win_wizard.xaml"
     this.line3.MouseLeave += new System.Windows.Input.MouseEventHandler(this.mouse_leave);
     
     #line default
     #line hidden
     
     #line 292 "..\..\win_wizard.xaml"
     this.line3.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.mouse_down);
     
     #line default
     #line hidden
     
     #line 292 "..\..\win_wizard.xaml"
     this.line3.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.mouse_up);
     
     #line default
     #line hidden
     return;
     case 38:
     this.l3_name = ((System.Windows.Controls.Label)(target));
     return;
     case 39:
     this.l3_distance = ((System.Windows.Controls.Label)(target));
     return;
     case 40:
     this.l3_cuisine = ((System.Windows.Controls.Label)(target));
     return;
     case 41:
     this.l3_rating = ((System.Windows.Controls.Image)(target));
     return;
     case 42:
     this.l3_reviews = ((System.Windows.Controls.Label)(target));
     return;
     case 43:
     this.l3_price = ((System.Windows.Controls.Label)(target));
     return;
     case 44:
     this.line4 = ((System.Windows.Controls.GroupBox)(target));
     
     #line 315 "..\..\win_wizard.xaml"
     this.line4.MouseEnter += new System.Windows.Input.MouseEventHandler(this.mouse_enter);
     
     #line default
     #line hidden
     
     #line 315 "..\..\win_wizard.xaml"
     this.line4.MouseLeave += new System.Windows.Input.MouseEventHandler(this.mouse_leave);
     
     #line default
     #line hidden
     
     #line 315 "..\..\win_wizard.xaml"
     this.line4.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.mouse_down);
     
     #line default
     #line hidden
     
     #line 315 "..\..\win_wizard.xaml"
     this.line4.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.mouse_up);
     
     #line default
     #line hidden
     return;
     case 45:
     this.l4_name = ((System.Windows.Controls.Label)(target));
     return;
     case 46:
     this.l4_distance = ((System.Windows.Controls.Label)(target));
     return;
     case 47:
     this.l4_cuisine = ((System.Windows.Controls.Label)(target));
     return;
     case 48:
     this.l4_rating = ((System.Windows.Controls.Image)(target));
     return;
     case 49:
     this.l4_reviews = ((System.Windows.Controls.Label)(target));
     return;
     case 50:
     this.l4_price = ((System.Windows.Controls.Label)(target));
     return;
     case 51:
     this.line5 = ((System.Windows.Controls.GroupBox)(target));
     
     #line 338 "..\..\win_wizard.xaml"
     this.line5.MouseEnter += new System.Windows.Input.MouseEventHandler(this.mouse_enter);
     
     #line default
     #line hidden
     
     #line 338 "..\..\win_wizard.xaml"
     this.line5.MouseLeave += new System.Windows.Input.MouseEventHandler(this.mouse_leave);
     
     #line default
     #line hidden
     
     #line 338 "..\..\win_wizard.xaml"
     this.line5.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.mouse_down);
     
     #line default
     #line hidden
     
     #line 338 "..\..\win_wizard.xaml"
     this.line5.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.mouse_up);
     
     #line default
     #line hidden
     return;
     case 52:
     this.l5_name = ((System.Windows.Controls.Label)(target));
     return;
     case 53:
     this.l5_distance = ((System.Windows.Controls.Label)(target));
     return;
     case 54:
     this.l5_cuisine = ((System.Windows.Controls.Label)(target));
     return;
     case 55:
     this.l5_rating = ((System.Windows.Controls.Image)(target));
     return;
     case 56:
     this.l5_reviews = ((System.Windows.Controls.Label)(target));
     return;
     case 57:
     this.l5_price = ((System.Windows.Controls.Label)(target));
     return;
     case 58:
     this.wiz_radio_correct = ((System.Windows.Controls.Label)(target));
     return;
     case 59:
     this.r_cmd_correct = ((System.Windows.Controls.Button)(target));
     
     #line 396 "..\..\win_wizard.xaml"
     this.r_cmd_correct.Click += new System.Windows.RoutedEventHandler(this.r_cmd_correct_Click);
     
     #line default
     #line hidden
     return;
     case 60:
     this.r_cmf_correct = ((System.Windows.Controls.Button)(target));
     
     #line 397 "..\..\win_wizard.xaml"
     this.r_cmf_correct.Click += new System.Windows.RoutedEventHandler(this.r_cmf_correct_Click);
     
     #line default
     #line hidden
     return;
     case 61:
     this.r_cmd_wrong = ((System.Windows.Controls.Button)(target));
     
     #line 398 "..\..\win_wizard.xaml"
     this.r_cmd_wrong.Click += new System.Windows.RoutedEventHandler(this.r_cmd_wrong_Click);
     
     #line default
     #line hidden
     return;
     case 62:
     this.r_cmf_wrong = ((System.Windows.Controls.Button)(target));
     
     #line 399 "..\..\win_wizard.xaml"
     this.r_cmf_wrong.Click += new System.Windows.RoutedEventHandler(this.r_cmf_wrong_Click);
     
     #line default
     #line hidden
     return;
     case 63:
     this.r_cmd_repeat = ((System.Windows.Controls.Button)(target));
     
     #line 400 "..\..\win_wizard.xaml"
     this.r_cmd_repeat.Click += new System.Windows.RoutedEventHandler(this.r_cmd_repeat_Click);
     
     #line default
     #line hidden
     return;
     case 64:
     this.r_cmf_repeat = ((System.Windows.Controls.Button)(target));
     
     #line 401 "..\..\win_wizard.xaml"
     this.r_cmf_repeat.Click += new System.Windows.RoutedEventHandler(this.r_cmf_repeat_Click);
     
     #line default
     #line hidden
     return;
     case 65:
     this.wiz_tdt_label = ((System.Windows.Controls.Label)(target));
     return;
     case 66:
     this.tdt_countdown = ((System.Windows.Controls.Label)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #39
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.btnSalir = ((System.Windows.Controls.Button)(target));

            #line 19 "..\..\WPFListarContrato.xaml"
                this.btnSalir.Click += new System.Windows.RoutedEventHandler(this.button_Click);

            #line default
            #line hidden
                return;

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

            case 3:
                this.gbFiltrar = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

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

            #line 28 "..\..\WPFListarContrato.xaml"
                this.btnFiltrarNum.Click += new System.Windows.RoutedEventHandler(this.btnFiltrar_Click);

            #line default
            #line hidden
                return;

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

            #line 29 "..\..\WPFListarContrato.xaml"
                this.btnFiltrarRut.Click += new System.Windows.RoutedEventHandler(this.btnFiltrarRut_Click);

            #line default
            #line hidden
                return;

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

            #line 30 "..\..\WPFListarContrato.xaml"
                this.btnFiltrarTipo.Click += new System.Windows.RoutedEventHandler(this.btnFiltrarTipo_Click);

            #line default
            #line hidden
                return;

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

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

            #line 34 "..\..\WPFListarContrato.xaml"
                this.btnPasar.Click += new System.Windows.RoutedEventHandler(this.btnPasar_Click_1);

            #line default
            #line hidden
                return;

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

            #line 35 "..\..\WPFListarContrato.xaml"
                this.button.Click += new System.Windows.RoutedEventHandler(this.button_Click_1);

            #line default
            #line hidden
                return;

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

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

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

            #line 38 "..\..\WPFListarContrato.xaml"
                this.btnFiltrarModalidad.Click += new System.Windows.RoutedEventHandler(this.btnFiltrarModalidad_Click);

            #line default
            #line hidden
                return;

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

            #line 39 "..\..\WPFListarContrato.xaml"
                this.btnRefrescar.Click += new System.Windows.RoutedEventHandler(this.btnRefrescar_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #40
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.rootGrid = ((System.Windows.Controls.Grid)(target));
     return;
     case 2:
     this.lbTitle = ((System.Windows.Controls.Label)(target));
     return;
     case 3:
     this.separator1 = ((System.Windows.Controls.Separator)(target));
     return;
     case 4:
     this.dataGrid1 = ((System.Windows.Controls.DataGrid)(target));
     return;
     case 5:
     this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 6:
     this.label3 = ((System.Windows.Controls.Label)(target));
     return;
     case 7:
     this.comboBox1 = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 8:
     this.label5 = ((System.Windows.Controls.Label)(target));
     return;
     case 9:
     this.comboBox3 = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 10:
     this.label2 = ((System.Windows.Controls.Label)(target));
     return;
     case 11:
     this.textBox1 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 12:
     this.button1 = ((System.Windows.Controls.Button)(target));
     
     #line 114 "..\..\..\..\..\View\Reports\QuotaInvoiceDetailReport.xaml"
     this.button1.Click += new System.Windows.RoutedEventHandler(this.Button1Click);
     
     #line default
     #line hidden
     return;
     case 13:
     this.label4 = ((System.Windows.Controls.Label)(target));
     return;
     case 14:
     this.comboBox2 = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 15:
     this.label6 = ((System.Windows.Controls.Label)(target));
     return;
     case 16:
     this.datePicker1 = ((System.Windows.Controls.DatePicker)(target));
     return;
     case 17:
     this.label7 = ((System.Windows.Controls.Label)(target));
     return;
     case 18:
     this.datePicker2 = ((System.Windows.Controls.DatePicker)(target));
     return;
     case 19:
     this.button3 = ((System.Windows.Controls.Button)(target));
     
     #line 133 "..\..\..\..\..\View\Reports\QuotaInvoiceDetailReport.xaml"
     this.button3.Click += new System.Windows.RoutedEventHandler(this.Button3Click);
     
     #line default
     #line hidden
     return;
     case 20:
     this.label1 = ((System.Windows.Controls.Label)(target));
     return;
     case 21:
     this.comboBox4 = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 22:
     this.button2 = ((System.Windows.Controls.Button)(target));
     
     #line 136 "..\..\..\..\..\View\Reports\QuotaInvoiceDetailReport.xaml"
     this.button2.Click += new System.Windows.RoutedEventHandler(this.Button2Click);
     
     #line default
     #line hidden
     return;
     case 23:
     this.button4 = ((System.Windows.Controls.Button)(target));
     
     #line 137 "..\..\..\..\..\View\Reports\QuotaInvoiceDetailReport.xaml"
     this.button4.Click += new System.Windows.RoutedEventHandler(this.button4_Click);
     
     #line default
     #line hidden
     return;
     case 24:
     this.label8 = ((System.Windows.Controls.Label)(target));
     return;
     case 25:
     this.label9 = ((System.Windows.Controls.Label)(target));
     return;
     case 26:
     this.label10 = ((System.Windows.Controls.Label)(target));
     return;
     case 27:
     this.label11 = ((System.Windows.Controls.Label)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #41
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 4 "..\..\..\ShowInstruConn.xaml"
                ((sportsCare.ShowInstruConn)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.gb_communication = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

            #line 14 "..\..\..\ShowInstruConn.xaml"
                this.btnScan.Click += new System.Windows.RoutedEventHandler(this.btnScan_Click);

            #line default
            #line hidden
                return;

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

            #line 15 "..\..\..\ShowInstruConn.xaml"
                this.btnDisconn.Click += new System.Windows.RoutedEventHandler(this.btnDisconn_Click);

            #line default
            #line hidden
                return;

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

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

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

            #line 18 "..\..\..\ShowInstruConn.xaml"
                this.btnScan2.Click += new System.Windows.RoutedEventHandler(this.btnScan2_Click);

            #line default
            #line hidden
                return;

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

            #line 19 "..\..\..\ShowInstruConn.xaml"
                this.btnDisconn2.Click += new System.Windows.RoutedEventHandler(this.btnDisconn2_Click);

            #line default
            #line hidden
                return;

            case 11:
                this.gb_protocol = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

            #line 34 "..\..\..\ShowInstruConn.xaml"
                this.btnOK.Click += new System.Windows.RoutedEventHandler(this.btnOK_Click);

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

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

            #line default
            #line hidden
                return;

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

            #line 57 "..\..\..\Window1.xaml"
                this.ara.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.ara_TextChanged);

            #line default
            #line hidden

            #line 57 "..\..\..\Window1.xaml"
                this.ara.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.ara_MouseDoubleClick);

            #line default
            #line hidden
                return;

            case 3:
                this.uyeollbl1 = ((System.Windows.Controls.Image)(target));

            #line 62 "..\..\..\Window1.xaml"
                this.uyeollbl1.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.uyeollbl1_MouseDown);

            #line default
            #line hidden
                return;

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

            #line 63 "..\..\..\Window1.xaml"
                this.uyeollbl.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.uyeollbl1_MouseDown);

            #line default
            #line hidden
                return;

            case 5:
                this.girislbl = ((System.Windows.Controls.Image)(target));

            #line 64 "..\..\..\Window1.xaml"
                this.girislbl.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.girisyaplbl_MouseDown);

            #line default
            #line hidden
                return;

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

            #line 65 "..\..\..\Window1.xaml"
                this.girisyaplbl.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.girisyaplbl_MouseDown);

            #line default
            #line hidden
                return;

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

            #line 93 "..\..\..\Window1.xaml"
                this.iki.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.iki_MouseDown);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #43
0
ファイル: MainWindow.g.i.cs プロジェクト: datadawork/TeraBot
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.Window = ((TeraBot.MainWindow)(target));

            #line 7 "..\..\..\MainWindow.xaml"
                this.Window.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseLeftButtonDown);

            #line default
            #line hidden
                return;

            case 2:
                this.ExitButtonMouseOver_BeginStoryboard = ((System.Windows.Media.Animation.BeginStoryboard)(target));
                return;

            case 3:
                this.HideButtonOnMouseEnter_BeginStoryboard = ((System.Windows.Media.Animation.BeginStoryboard)(target));
                return;

            case 4:
                this.HideButtonOnMouseLeave_BeginStoryboard = ((System.Windows.Media.Animation.BeginStoryboard)(target));
                return;

            case 5:
                this.ExitButtonOnMouseLeave_BeginStoryboard = ((System.Windows.Media.Animation.BeginStoryboard)(target));
                return;

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

            case 7:
                this.rectangle = ((System.Windows.Shapes.Rectangle)(target));

            #line 177 "..\..\..\MainWindow.xaml"
                this.rectangle.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.rectangle_MouseDown);

            #line default
            #line hidden
                return;

            case 8:
                this.progressBar1 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 9:
                this.progressBar2 = ((System.Windows.Controls.ProgressBar)(target));
                return;

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

            case 11:
                this.tabItem = ((System.Windows.Controls.TabItem)(target));
                return;

            case 12:

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

            #line default
            #line hidden
                return;

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

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

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

            case 16:
                this.groupBox2 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

            case 20:
                this.checkBox4 = ((System.Windows.Controls.CheckBox)(target));
                return;

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

            case 22:
                this.checkBox6 = ((System.Windows.Controls.CheckBox)(target));
                return;

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

            case 24:
                this.checkBox8 = ((System.Windows.Controls.CheckBox)(target));
                return;

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

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

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

            case 28:
                this.checkBox12 = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 29:
                this.checkBox13 = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 30:
                this.checkBox14 = ((System.Windows.Controls.CheckBox)(target));
                return;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            case 53:
                this.textBox18 = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 55:
                this.textBox20 = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 57:
                this.SkillSleep11 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 58:
                this.textBox23 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 59:
                this.SkillSleep12 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 60:
                this.textBox25 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 61:
                this.textBox26 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 62:
                this.SkillSleep13 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 63:
                this.textBox28 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 64:
                this.SkillSleep14 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 65:
                this.textBox30 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 66:
                this.textBox31 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 67:
                this.SkillSleep15 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 68:
                this.textBox33 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 69:
                this.SkillSleep16 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 70:
                this.textBox35 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 71:
                this.textBox36 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 72:
                this.SkillSleep17 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 73:
                this.textBox38 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 74:
                this.SkillSleep18 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 75:
                this.textBox40 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 76:
                this.textBox41 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 77:
                this.SkillSleep19 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 78:
                this.textBox43 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 79:
                this.SkillSleep20 = ((System.Windows.Controls.TextBox)(target));
                return;

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

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

            #line default
            #line hidden
                return;

            case 81:
                this.checkAFK = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 82:
                this.textBox2 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 83:
                this.textBox3 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 84:
                this.label20 = ((System.Windows.Controls.Label)(target));
                return;

            case 85:
                this.skillPauseBox = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 87:
                this.tabItem1 = ((System.Windows.Controls.TabItem)(target));
                return;

            case 88:
                this.rectangle1 = ((System.Windows.Shapes.Rectangle)(target));

            #line 335 "..\..\..\MainWindow.xaml"
                this.rectangle1.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.rectangle1_MouseDown);

            #line default
            #line hidden
                return;

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

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

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

            case 92:
                this.image2 = ((System.Windows.Controls.Image)(target));
                return;

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

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

            #line 357 "..\..\..\MainWindow.xaml"
                this.label9.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.label9_MouseDown);

            #line default
            #line hidden
                return;

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

            case 96:
                this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

            case 102:
                this.label15 = ((System.Windows.Controls.Label)(target));
                return;

            case 103:
                this.label16 = ((System.Windows.Controls.Label)(target));
                return;

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

            case 105:
                this.label18 = ((System.Windows.Controls.Label)(target));
                return;

            case 106:
                this.label19 = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #44
0
ファイル: MainWindow.g.i.cs プロジェクト: llenroc/MobiGuide
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

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

            #line default
            #line hidden
                return;

            case 2:
                this.mainMenu = ((System.Windows.Controls.Menu)(target));
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 52 "..\..\..\Windows\MainWindow.xaml"
                this.EditCurrentUserMenuItem.Click += new System.Windows.RoutedEventHandler(this.EditCurrentUserMenuItem_Click);

            #line default
            #line hidden
                return;

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

            #line 53 "..\..\..\Windows\MainWindow.xaml"
                this.LogoutMenuItem.Click += new System.Windows.RoutedEventHandler(this.LogoutMenuItem_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 58 "..\..\..\Windows\MainWindow.xaml"
                this.AirportMenuItem.Click += new System.Windows.RoutedEventHandler(this.AirportMenuItem_Click);

            #line default
            #line hidden
                return;

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

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 63 "..\..\..\Windows\MainWindow.xaml"
                this.TextTemplate.Click += new System.Windows.RoutedEventHandler(this.TextTemplate_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.groupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

            case 17:
                this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            #line 84 "..\..\..\Windows\MainWindow.xaml"
                this.showLogoBtn.Click += new System.Windows.RoutedEventHandler(this.showLogoBtn_Click);

            #line default
            #line hidden
                return;

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

            #line 92 "..\..\..\Windows\MainWindow.xaml"
                this.showSeatMapBtn.Click += new System.Windows.RoutedEventHandler(this.showSeatMapBtn_Click);

            #line default
            #line hidden
                return;

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

            #line 100 "..\..\..\Windows\MainWindow.xaml"
                this.showTextBtn.Click += new System.Windows.RoutedEventHandler(this.showTextBtn_Click);

            #line default
            #line hidden
                return;

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

            case 22:
                this.aircraftConfigComboBox = ((System.Windows.Controls.ComboBox)(target));

            #line 112 "..\..\..\Windows\MainWindow.xaml"
                this.aircraftConfigComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.aircraftConfigComboBox_SelectionChanged);

            #line default
            #line hidden
                return;

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

            case 24:
                this.bridgeRadBtn = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 25:
                this.busgateRadBtn = ((System.Windows.Controls.RadioButton)(target));
                return;

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

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

            case 28:
                this.rearDoorCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

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

            case 30:
                this.flightNoTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

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

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

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

            case 34:
                this.destinationComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 35:
                this.textBlock7 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 36:
                this.departureDatePicker = ((System.Windows.Controls.DatePicker)(target));
                return;

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

            case 38:
                this.departureTimePicker = ((Xceed.Wpf.Toolkit.TimePicker)(target));
                return;

            case 39:
                this.textBlock10 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 40:
                this.textTemplateComboBox = ((System.Windows.Controls.ComboBox)(target));

            #line 157 "..\..\..\Windows\MainWindow.xaml"
                this.textTemplateComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.textTemplateComboBox_SelectionChanged);

            #line default
            #line hidden
                return;

            case 41:
                this.textBlock9 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 42:
                this.rotateSecondsUpDown = ((Xceed.Wpf.Toolkit.IntegerUpDown)(target));
                return;

            case 43:
                this.textBlock11 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 44:
                this.textDisplayedTextBox = ((System.Windows.Controls.TextBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #45
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.grid_Main = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 3:
                this.tabItem1 = ((System.Windows.Controls.TabItem)(target));
                return;

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

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

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

            #line default
            #line hidden
                return;

            case 6:
                this.progressBar1 = ((System.Windows.Controls.ProgressBar)(target));
                return;

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

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

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

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

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

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

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

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

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

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

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

            case 18:
                this.radio_Sullivan = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 19:
                this.radio_Other = ((System.Windows.Controls.RadioButton)(target));
                return;

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

            #line 28 "..\..\..\MainWindow.xaml"
                this.button3.Click += new System.Windows.RoutedEventHandler(this.button3_Click);

            #line default
            #line hidden
                return;

            case 21:
                this.tabitem_BasicStrategyHard = ((System.Windows.Controls.TabItem)(target));
                return;

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

            case 23:
                this.group_BSHardStats = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

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

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

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

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

            #line default
            #line hidden
                return;

            case 32:
                this.myChartPlotter = ((Microsoft.Research.DynamicDataDisplay.ChartPlotter)(target));
                return;

            case 33:
                this.cursorGraph = ((Microsoft.Research.DynamicDataDisplay.Charts.Navigation.CursorCoordinateGraph)(target));
                return;

            case 34:
                this.intAxis = ((Microsoft.Research.DynamicDataDisplay.Charts.Axes.IntegerAxis)(target));
                return;

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

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

            case 37:
                this.check_H17 = ((System.Windows.Controls.CheckBox)(target));
                return;

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

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

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

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

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

            case 43:
                this.radio_None = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 44:
                this.radio_KO = ((System.Windows.Controls.RadioButton)(target));
                return;

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

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

            case 47:
                this.check_DAS = ((System.Windows.Controls.CheckBox)(target));
                return;

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

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

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

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

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

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

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

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

            case 56:
                this.check_RSA = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 57:
                this.check_Surrender = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 58:
                this.txt_TablePosition = ((System.Windows.Controls.TextBox)(target));
                return;

            case 59:
                this.label22 = ((System.Windows.Controls.Label)(target));
                return;

            case 60:
                this.check_BetRamp = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 61:
                this.txt_NumberOfTrials = ((System.Windows.Controls.TextBox)(target));
                return;

            case 62:
                this.label23 = ((System.Windows.Controls.Label)(target));
                return;

            case 63:
                this.txt_Results = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 64:
                this.tabItem3 = ((System.Windows.Controls.TabItem)(target));
                return;

            case 65:
                this.txt_player1 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 66:
                this.txt_player2 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 67:
                this.txt_dealerUp = ((System.Windows.Controls.TextBox)(target));
                return;

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

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

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

            case 71:
                this.lbl_first = ((System.Windows.Controls.Label)(target));
                return;

            case 72:
                this.lbl_second = ((System.Windows.Controls.Label)(target));
                return;

            case 73:
                this.lbl_third = ((System.Windows.Controls.Label)(target));
                return;

            case 74:
                this.lbl_fourth = ((System.Windows.Controls.Label)(target));
                return;

            case 75:
                this.label1 = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #46
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.tbBaseCalculoICMS = ((System.Windows.Controls.TextBox)(target));
                return;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            case 25:
                this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 26:
                this.cbStatus = ((System.Windows.Controls.ComboBox)(target));
                return;

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

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

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

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

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

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

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

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

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

            case 36:
                this.dpEmissao = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 37:
                this.dpEntradaSaida = ((System.Windows.Controls.DatePicker)(target));
                return;

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

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

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

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

            case 42:
                this.cbTipoOperacao = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            case 44:
                this.cbFormaPagamento = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            case 46:
                this.cbFormaEmissao = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            case 48:
                this.cbFinalidadeEmissao = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            case 50:
                this.cbTipoImpressaoDANFE = ((System.Windows.Controls.ComboBox)(target));
                return;

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

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

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

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

            case 55:
                this.tbInformacoesFisco = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 57:
                this.label27 = ((System.Windows.Controls.Label)(target));
                return;

            case 58:
                this.label28 = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #47
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.stackPanel1 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 2:
                this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

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

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

            case 10:
                this.cmbClasse = ((System.Windows.Controls.ComboBox)(target));

            #line 27 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.cmbClasse.DropDownClosed += new System.EventHandler(this.cmbClasse_DropDownClosed);

            #line default
            #line hidden
                return;

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

            #line 28 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.cmbMatiere.DropDownClosed += new System.EventHandler(this.cmbMatiere_DropDownClosed);

            #line default
            #line hidden
                return;

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

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

            #line 30 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.cmbSequence.DropDownClosed += new System.EventHandler(this.cmbSequence_DropDownClosed);

            #line default
            #line hidden
                return;

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

            #line 31 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.cmbBareme.DropDownClosed += new System.EventHandler(this.cmbBareme_DropDownClosed);

            #line default
            #line hidden
                return;

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

            #line 32 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.txtAnnee.KeyUp += new System.Windows.Input.KeyEventHandler(this.txtAnnee_KeyUp);

            #line default
            #line hidden
                return;

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

            #line 33 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.cmdAnnuler.Click += new System.Windows.RoutedEventHandler(this.cmdAnnuler_Click);

            #line default
            #line hidden
                return;

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

            #line 34 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.cmdOK.Click += new System.Windows.RoutedEventHandler(this.cmdOK_Click);

            #line default
            #line hidden
                return;

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

            #line 35 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.txtAnneeScolaire.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txtAnneeScolaire_TextChanged);

            #line default
            #line hidden

            #line 35 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.txtAnneeScolaire.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.txtAnneeScolaire_PreviewTextInput);

            #line default
            #line hidden
                return;

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

            case 20:
                this.grdListe = ((System.Windows.Controls.DataGrid)(target));

            #line 42 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.grdListe.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.grdListe_PreviewKeyDown);

            #line default
            #line hidden
                return;

            case 21:
                this.grdNumero = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 22:
                this.grdNom = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

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

            case 24:
                this.grdNotes = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 25:
                this.image1 = ((System.Windows.Controls.Image)(target));
                return;

            case 26:
                this.image2 = ((System.Windows.Controls.Image)(target));
                return;

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

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

            #line 69 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.cmdImprimer.Click += new System.Windows.RoutedEventHandler(this.cmdImprimer_Click);

            #line default
            #line hidden
                return;

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

            #line 70 "..\..\..\..\UI\SaisieNotesSansAnonymatsUI.xaml"
                this.cmdFermer.Click += new System.Windows.RoutedEventHandler(this.cmdFermer_Click);

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

            #line 8 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.thisForm.Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

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

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

            #line 64 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.btnAddNewRecord.Click += new System.Windows.RoutedEventHandler(this.BtnAddNewRecord_Click);

            #line default
            #line hidden
                return;

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

            #line 72 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.btnEdit.Click += new System.Windows.RoutedEventHandler(this.BtnEdit_Click);

            #line default
            #line hidden
                return;

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

            #line 80 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.btnDelete.Click += new System.Windows.RoutedEventHandler(this.BtnDelete_Click);

            #line default
            #line hidden
                return;

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

            #line 88 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.btnCancelLotCard.Click += new System.Windows.RoutedEventHandler(this.BtnCancelLotCard_Click);

            #line default
            #line hidden
                return;

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

            #line 97 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.btnSave.Click += new System.Windows.RoutedEventHandler(this.BtnSave_Click);

            #line default
            #line hidden
                return;

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

            #line 106 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.btnCancelChanges.Click += new System.Windows.RoutedEventHandler(this.BtnCancelChanges_Click);

            #line default
            #line hidden
                return;

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

            #line 115 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.btnPreview.Click += new System.Windows.RoutedEventHandler(this.BtnPreview_Click);

            #line default
            #line hidden
                return;

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

            #line 124 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.btnReprint.Click += new System.Windows.RoutedEventHandler(this.BtnReprint_Click);

            #line default
            #line hidden
                return;

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

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

            case 13:
                this.cboFilterCustomer = ((Telerik.Windows.Controls.RadComboBox)(target));

            #line 198 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.cboFilterCustomer.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.CboFilterCustomer_SubCon_SelectionChanged);

            #line default
            #line hidden
                return;

            case 14:
                this.cboFilterMonth = ((Telerik.Windows.Controls.RadComboBox)(target));

            #line 203 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.cboFilterMonth.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.CboFilterMonth_SelectionChanged);

            #line default
            #line hidden
                return;

            case 15:
                this.cboFilterYear = ((Telerik.Windows.Controls.RadComboBox)(target));

            #line 206 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.cboFilterYear.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.CboFilterYear_SelectionChanged);

            #line default
            #line hidden
                return;

            case 16:
                this.gridLotCardGroup = ((Telerik.Windows.Controls.RadGridView)(target));

            #line 219 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.gridLotCardGroup.RowActivated += new System.EventHandler <Telerik.Windows.Controls.GridView.RowEventArgs>(this.GridLotCardGroup_RowActivated);

            #line default
            #line hidden

            #line 220 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.gridLotCardGroup.SelectionChanged += new System.EventHandler <Telerik.Windows.Controls.SelectionChangeEventArgs>(this.GridLotCardGroup_SelectionChanged);

            #line default
            #line hidden
                return;

            case 17:
                this.GridFields = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 19:
                this.tbLotCardNo = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 20:
                this.grp3 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

            case 23:
                this.grp2 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

            case 27:
                this.tbDate = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 28:
                this.tbTime = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 29:
                this.tbEncoder = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

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

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

            case 32:
                this.tbCustomerCode = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 33:
                this.tbCustomerName = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

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

            case 35:
                this.tbReqRefNo = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 36:
                this.cboPart = ((Telerik.Windows.Controls.RadComboBox)(target));

            #line 419 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.cboPart.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.CboPart_SelectionChanged);

            #line default
            #line hidden
                return;

            case 37:
                this.tbPartName = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 38:
                this.tbRevNo = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 39:
                this.tbModel = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 40:
                this.tbWarehouseDestination = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 41:
                this.tbPONo = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 42:
                this.tbJONo = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 43:
                this.tbTotalQty = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 44:
                this.tbQtyPerBox = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 45:
                this.tbQtyPerPack = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 46:
                this.tbComputedNoOfBoxes = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 47:
                this.dateManaufactured = ((Telerik.Windows.Controls.RadDatePicker)(target));

            #line 563 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.dateManaufactured.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.DateManaufactured_SelectionChanged);

            #line default
            #line hidden
                return;

            case 48:
                this.cboWorkShift = ((Telerik.Windows.Controls.RadComboBox)(target));

            #line 586 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.cboWorkShift.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.CboWorkShift_SelectionChanged);

            #line default
            #line hidden
                return;

            case 49:
                this.tbSohbiInternalLotNo = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 50:
                this.tbLN1 = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 51:
                this.tbLN2 = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 52:
                this.tbLN3 = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 53:
                this.tbLN4 = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 54:
                this.tbLN5 = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 55:
                this.tbLN6 = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 56:
                this.tbLN7 = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 57:
                this.tbLN8 = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 58:
                this.tbLN9 = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 59:
                this.tbLN10 = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 60:
                this.tbROHSMark = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 61:
                this.tbAdditionalMark = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 62:
                this.tbRemarks = ((Telerik.Windows.Controls.RadWatermarkTextBox)(target));
                return;

            case 63:
                this.cboPackedBy = ((Telerik.Windows.Controls.RadComboBox)(target));
                return;

            case 64:
                this.gridPaperColor = ((System.Windows.Controls.Grid)(target));
                return;

            case 65:
                this.btnChangePaperColor = ((System.Windows.Controls.Button)(target));

            #line 744 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.btnChangePaperColor.Click += new System.Windows.RoutedEventHandler(this.BtnChangePaperColor_Click);

            #line default
            #line hidden
                return;

            case 66:
                this.txtPaperColor = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 67:
                this.btnGenerateLotcardLabel = ((System.Windows.Controls.Button)(target));

            #line 756 "..\..\..\..\LOTCARD_LABEL\Cantier\LotCardLabel_OtherCustomers_Sample.xaml"
                this.btnGenerateLotcardLabel.Click += new System.Windows.RoutedEventHandler(this.BtnGenerateLotcardLabel_Click);

            #line default
            #line hidden
                return;

            case 68:
                this.lblGenerateLotCard = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 69:
                this.glbl8 = ((System.Windows.Controls.Label)(target));
                return;

            case 70:
                this.gridOutsideLot = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 71:
                this.coutOutsideNo = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 72:
                this.coutQtyPerBox_Case = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 73:
                this.lblReceivedByPMCMark = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 74:
                this.glbl14 = ((System.Windows.Controls.Label)(target));
                return;

            case 75:
                this.gridInsideLot = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 76:
                this.cinOutsideNo = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 77:
                this.cinInsideNo = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;

            case 78:
                this.cinQtyPerBox_Case = ((System.Windows.Controls.DataGridTextColumn)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #49
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.poolgrid = ((System.Windows.Controls.Grid)(target));
                return;

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

            #line 45 "..\..\..\pages\pool.xaml"
                this.pooltrainerbtn.Click += new System.Windows.RoutedEventHandler(this.pooltrainerbtn_Click);

            #line default
            #line hidden
                return;

            case 3:
                this.groupbox3 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            case 5:
                this.poolrdbtn2 = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 6:
                this.poolrdbtn3 = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 7:
                this.poolrdbtn4 = ((System.Windows.Controls.RadioButton)(target));
                return;

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

            case 9:

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

            #line default
            #line hidden
                return;

            case 10:

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

            #line default
            #line hidden
                return;

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

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

            #line 76 "..\..\..\pages\pool.xaml"
                this.swimbtn.Click += new System.Windows.RoutedEventHandler(this.swimbtn_Click);

            #line default
            #line hidden
                return;

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

            #line 82 "..\..\..\pages\pool.xaml"
                this.pooltoExercisebtn.Click += new System.Windows.RoutedEventHandler(this.pooltoExercisebtn_Click);

            #line default
            #line hidden
                return;

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

            #line 83 "..\..\..\pages\pool.xaml"
                this.pooltoBarbtn.Click += new System.Windows.RoutedEventHandler(this.pooltoBarbtn_Click);

            #line default
            #line hidden
                return;

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

            #line 84 "..\..\..\pages\pool.xaml"
                this.pooltoLockersbtn.Click += new System.Windows.RoutedEventHandler(this.pooltoLockersbtn_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #50
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.Modyfikacje = ((WPF_test.Window3)(target));

            #line 8 "..\..\Window3.xaml"
                this.Modyfikacje.Closing += new System.ComponentModel.CancelEventHandler(this.Manager_FormClosing);

            #line default
            #line hidden
                return;

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

            #line 16 "..\..\Window3.xaml"
                this.Create_NewUser.Click += new System.Windows.RoutedEventHandler(this.Create_user);

            #line default
            #line hidden
                return;

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

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

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

            #line 22 "..\..\Window3.xaml"
                this.Delete_user.Click += new System.Windows.RoutedEventHandler(this.Delete_user_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.users_box = ((System.Windows.Controls.ListBox)(target));
                return;

            case 7:
                this.New_password = ((System.Windows.Controls.PasswordBox)(target));
                return;

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

            #line 25 "..\..\Window3.xaml"
                this.Clear.Click += new System.Windows.RoutedEventHandler(this.Clear_click);

            #line default
            #line hidden
                return;

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

            #line 26 "..\..\Window3.xaml"
                this.Back.Click += new System.Windows.RoutedEventHandler(this.LogOut);

            #line default
            #line hidden
                return;

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

            #line 27 "..\..\Window3.xaml"
                this.Change_psw.Click += new System.Windows.RoutedEventHandler(this.Change_password);

            #line default
            #line hidden
                return;

            case 11:
                this.ranga_box = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

            case 14:
                this.radio_user = ((System.Windows.Controls.RadioButton)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #51
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     
     #line 13 "..\..\..\Config.xaml"
     ((Pivodeck.Config)(target)).Loaded += new System.Windows.RoutedEventHandler(this.WindowLoaded);
     
     #line default
     #line hidden
     return;
     case 2:
     this.uiGridMain = ((System.Windows.Controls.Grid)(target));
     return;
     case 3:
     this.CloseButton = ((Pivodeck.SlickToggleButton)(target));
     return;
     case 4:
     this.TitleLabel = ((System.Windows.Controls.Label)(target));
     return;
     case 5:
     this.txtProjeto = ((System.Windows.Controls.TextBox)(target));
     return;
     case 6:
     this.lbToken = ((System.Windows.Controls.Label)(target));
     return;
     case 7:
     this.txtToken = ((System.Windows.Controls.TextBox)(target));
     return;
     case 8:
     this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 9:
     this.cbCriada = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 10:
     this.cbDeletada = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 11:
     this.cbIniciada = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 12:
     this.cbFinalizada = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 13:
     this.cbEntregue = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 14:
     this.btOK = ((System.Windows.Controls.Button)(target));
     
     #line 86 "..\..\..\Config.xaml"
     this.btOK.Click += new System.Windows.RoutedEventHandler(this.ButtonClick);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
コード例 #52
0
ファイル: Racun.g.i.cs プロジェクト: nikolam90bg/Csharp
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.groupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

            case 4:
                this.rtb_opisKvara = ((System.Windows.Controls.RichTextBox)(target));
                return;

            case 5:
                this.rtb_SpisakPoslova = ((System.Windows.Controls.RichTextBox)(target));
                return;

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

            case 7:
                this.rtb_SpisakRezDel = ((System.Windows.Controls.RichTextBox)(target));
                return;

            case 8:
                this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            case 28:
                this.cb = ((System.Windows.Controls.ComboBox)(target));

            #line 84 "..\..\Racun.xaml"
                this.cb.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cb_SelectionChanged);

            #line default
            #line hidden
                return;

            case 29:
                this.groupBox3 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

            case 34:
                this.button1 = ((System.Windows.Controls.Button)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #53
0
ファイル: NewUser.g.i.cs プロジェクト: Logeshkumar/Projects
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 2:
     this.label1 = ((System.Windows.Controls.Label)(target));
     return;
     case 3:
     this.label2 = ((System.Windows.Controls.Label)(target));
     return;
     case 4:
     this.textBox1 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 5:
     this.textBox2 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 6:
     this.button1 = ((System.Windows.Controls.Button)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #54
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

            #line 20 "..\..\..\..\Utilitaire\WindowAddEditTypeClasseUI.xaml"
                this.txtFraisInscription.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.txtFraisInscription_PreviewTextInput);

            #line default
            #line hidden
                return;

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

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

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

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

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

            #line 36 "..\..\..\..\Utilitaire\WindowAddEditTypeClasseUI.xaml"
                this.cmdValider.Click += new System.Windows.RoutedEventHandler(this.cmdValider_Click);

            #line default
            #line hidden
                return;

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

            #line 37 "..\..\..\..\Utilitaire\WindowAddEditTypeClasseUI.xaml"
                this.cmdAnnuler.Click += new System.Windows.RoutedEventHandler(this.cmdAnnuler_Click);

            #line default
            #line hidden
                return;

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

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

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

            #line 51 "..\..\..\..\Utilitaire\WindowAddEditTypeClasseUI.xaml"
                this.cmbFilterCode.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbFilterCode_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

            #line 53 "..\..\..\..\Utilitaire\WindowAddEditTypeClasseUI.xaml"
                this.cmbFilterNom.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbFilterNom_SelectionChanged);

            #line default
            #line hidden
                return;

            case 17:
                this.grdListeTypeClasse = ((System.Windows.Controls.DataGrid)(target));

            #line 55 "..\..\..\..\Utilitaire\WindowAddEditTypeClasseUI.xaml"
                this.grdListeTypeClasse.KeyUp += new System.Windows.Input.KeyEventHandler(this.grdListeNiveau_KeyUp);

            #line default
            #line hidden

            #line 55 "..\..\..\..\Utilitaire\WindowAddEditTypeClasseUI.xaml"
                this.grdListeTypeClasse.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.grdListeNiveau_MouseDoubleClick);

            #line default
            #line hidden
                return;

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

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

            #line 72 "..\..\..\..\Utilitaire\WindowAddEditTypeClasseUI.xaml"
                this.cmdFermer.Click += new System.Windows.RoutedEventHandler(this.cmdFermer_Click);

            #line default
            #line hidden
                return;

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

            #line 73 "..\..\..\..\Utilitaire\WindowAddEditTypeClasseUI.xaml"
                this.cmdImprimer.Click += new System.Windows.RoutedEventHandler(this.cmdImprimer_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #55
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.grid1 = ((System.Windows.Controls.Grid)(target));
     return;
     case 2:
     this.roomName = ((System.Windows.Controls.Label)(target));
     return;
     case 3:
     this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 4:
     this.label1 = ((System.Windows.Controls.Label)(target));
     return;
     case 5:
     this.radioButton1 = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 6:
     this.radioButton2 = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 7:
     this.radioButton3 = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 8:
     this.radioButton4 = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 9:
     this.label2 = ((System.Windows.Controls.Label)(target));
     return;
     case 10:
     this.radioButton5 = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 11:
     this.radioButton6 = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 12:
     this.button1 = ((System.Windows.Controls.Button)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #56
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.btn_volver = ((System.Windows.Controls.Button)(target));

            #line 13 "..\..\..\Vistas\AdministrarCliente.xaml"
                this.btn_volver.Click += new System.Windows.RoutedEventHandler(this.btn_volver_Click);

            #line default
            #line hidden
                return;

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

            case 3:
                this.groupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

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

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

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

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

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

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

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

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

            #line 30 "..\..\..\Vistas\AdministrarCliente.xaml"
                this.btn_grabarcli.Click += new System.Windows.RoutedEventHandler(this.btn_grabarcli_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #57
0
ファイル: MainWindow.g.i.cs プロジェクト: eddiez/soggiorni
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     
     #line 5 "..\..\..\MainWindow.xaml"
     ((Soggiorni.MainWindow)(target)).Initialized += new System.EventHandler(this.Window_Initialized);
     
     #line default
     #line hidden
     
     #line 5 "..\..\..\MainWindow.xaml"
     ((Soggiorni.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
     
     #line default
     #line hidden
     return;
     case 2:
     
     #line 15 "..\..\..\MainWindow.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemEsci_Click);
     
     #line default
     #line hidden
     return;
     case 3:
     
     #line 22 "..\..\..\MainWindow.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemAddCliente_Click);
     
     #line default
     #line hidden
     return;
     case 4:
     
     #line 27 "..\..\..\MainWindow.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemCsvAuguri_Click);
     
     #line default
     #line hidden
     return;
     case 5:
     
     #line 35 "..\..\..\MainWindow.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemPrestampato_Click);
     
     #line default
     #line hidden
     return;
     case 6:
     
     #line 40 "..\..\..\MainWindow.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemFileQuestura_Click);
     
     #line default
     #line hidden
     return;
     case 7:
     
     #line 46 "..\..\..\MainWindow.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemFileIstat_Click);
     
     #line default
     #line hidden
     return;
     case 8:
     
     #line 51 "..\..\..\MainWindow.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemFileIstatManual_Click);
     
     #line default
     #line hidden
     return;
     case 9:
     
     #line 57 "..\..\..\MainWindow.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemDispCam_Click);
     
     #line default
     #line hidden
     return;
     case 10:
     
     #line 62 "..\..\..\MainWindow.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemNotPremi_Click);
     
     #line default
     #line hidden
     return;
     case 11:
     
     #line 70 "..\..\..\MainWindow.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItemCorrispettivi_Click);
     
     #line default
     #line hidden
     return;
     case 12:
     
     #line 77 "..\..\..\MainWindow.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.AboutMenuItem_Click);
     
     #line default
     #line hidden
     return;
     case 13:
     this.btnAddSoggiorno = ((System.Windows.Controls.Button)(target));
     
     #line 100 "..\..\..\MainWindow.xaml"
     this.btnAddSoggiorno.Click += new System.Windows.RoutedEventHandler(this.btnAddSoggiorno_Click);
     
     #line default
     #line hidden
     return;
     case 14:
     this.imgAddSoggiorno = ((System.Windows.Controls.Image)(target));
     return;
     case 15:
     this.btnTableau = ((System.Windows.Controls.Button)(target));
     
     #line 108 "..\..\..\MainWindow.xaml"
     this.btnTableau.Click += new System.Windows.RoutedEventHandler(this.btnTableau_Click);
     
     #line default
     #line hidden
     return;
     case 16:
     this.imgTableau = ((System.Windows.Controls.Image)(target));
     return;
     case 17:
     this.btnNewPagamento = ((System.Windows.Controls.Button)(target));
     
     #line 116 "..\..\..\MainWindow.xaml"
     this.btnNewPagamento.Click += new System.Windows.RoutedEventHandler(this.btnNewPagamento_Click);
     
     #line default
     #line hidden
     return;
     case 18:
     this.image1 = ((System.Windows.Controls.Image)(target));
     return;
     case 19:
     this.btnSearchSoggiorno = ((System.Windows.Controls.Button)(target));
     
     #line 122 "..\..\..\MainWindow.xaml"
     this.btnSearchSoggiorno.Click += new System.Windows.RoutedEventHandler(this.btnSearchSoggiorno_Click);
     
     #line default
     #line hidden
     return;
     case 20:
     this.imgSearchSoggiorno = ((System.Windows.Controls.Image)(target));
     return;
     case 21:
     this.btnSearchCliente = ((System.Windows.Controls.Button)(target));
     
     #line 133 "..\..\..\MainWindow.xaml"
     this.btnSearchCliente.Click += new System.Windows.RoutedEventHandler(this.btnSearchCliente_Click);
     
     #line default
     #line hidden
     return;
     case 22:
     this.imgSearchCliente = ((System.Windows.Controls.Image)(target));
     return;
     case 23:
     this.btnSearchPagamento = ((System.Windows.Controls.Button)(target));
     
     #line 141 "..\..\..\MainWindow.xaml"
     this.btnSearchPagamento.Click += new System.Windows.RoutedEventHandler(this.btnSearchPagamento_Click);
     
     #line default
     #line hidden
     return;
     case 24:
     this.image2 = ((System.Windows.Controls.Image)(target));
     return;
     case 25:
     this.textBlock1 = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 26:
     this.dataGridCurrent = ((System.Windows.Controls.DataGrid)(target));
     
     #line 151 "..\..\..\MainWindow.xaml"
     this.dataGridCurrent.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.dataGridCurrent_MouseDoubleClick);
     
     #line default
     #line hidden
     return;
     case 27:
     this.txtNext = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 28:
     this.dataGridNext = ((System.Windows.Controls.DataGrid)(target));
     
     #line 178 "..\..\..\MainWindow.xaml"
     this.dataGridNext.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.dataGridNext_MouseDoubleClick);
     
     #line default
     #line hidden
     return;
     case 29:
     this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 30:
     this.dataGridArriviOggi = ((System.Windows.Controls.DataGrid)(target));
     
     #line 210 "..\..\..\MainWindow.xaml"
     this.dataGridArriviOggi.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.dataGridArriviOggi_MouseDoubleClick);
     
     #line default
     #line hidden
     return;
     case 31:
     this.dataGridPartenzeOggi = ((System.Windows.Controls.DataGrid)(target));
     
     #line 233 "..\..\..\MainWindow.xaml"
     this.dataGridPartenzeOggi.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.dataGridPartenzeOggi_MouseDoubleClick);
     
     #line default
     #line hidden
     return;
     case 32:
     this.textBlock3 = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 33:
     this.textBlock2 = ((System.Windows.Controls.TextBlock)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #58
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.window = ((ReliefAnalysis.OptionCase)(target));

            #line 5 "..\..\..\..\View\OptionCase.xaml"
                this.window.Loaded += new System.Windows.RoutedEventHandler(this.window_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.gBox = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            case 4:
                this.chk1 = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 5:
                this.chk2 = ((System.Windows.Controls.CheckBox)(target));
                return;

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

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

            case 8:
                this.chk5 = ((System.Windows.Controls.CheckBox)(target));
                return;

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

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

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

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

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

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

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

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

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

            #line 39 "..\..\..\..\View\OptionCase.xaml"
                this.btnOK.Click += new System.Windows.RoutedEventHandler(this.btnOK_Click);

            #line default
            #line hidden
                return;

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

            #line 40 "..\..\..\..\View\OptionCase.xaml"
                this.btnCancel.Click += new System.Windows.RoutedEventHandler(this.btnCancel_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #59
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.txtElementos = ((System.Windows.Controls.TextBox)(target));
     return;
     case 2:
     this.label1 = ((System.Windows.Controls.Label)(target));
     return;
     case 3:
     this.rBtAleatorio = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 4:
     this.rBtAscendente = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 5:
     this.rBtDescendente = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 6:
     this.button1 = ((System.Windows.Controls.Button)(target));
     
     #line 16 "..\..\..\..\Formularios\CrearLista.xaml"
     this.button1.Click += new System.Windows.RoutedEventHandler(this.bt_Crear);
     
     #line default
     #line hidden
     return;
     case 7:
     this.button2 = ((System.Windows.Controls.Button)(target));
     
     #line 17 "..\..\..\..\Formularios\CrearLista.xaml"
     this.button2.Click += new System.Windows.RoutedEventHandler(this.button2_Click);
     
     #line default
     #line hidden
     return;
     case 8:
     this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 9:
     this.txtListas = ((System.Windows.Controls.TextBox)(target));
     return;
     case 10:
     this.label2 = ((System.Windows.Controls.Label)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #60
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 4 "..\..\..\PP_Almacen.xaml"
                ((appfe.Pantalla_Principal_Almacen)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing);

            #line default
            #line hidden

            #line 4 "..\..\..\PP_Almacen.xaml"
                ((appfe.Pantalla_Principal_Almacen)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden

            #line 4 "..\..\..\PP_Almacen.xaml"
                ((appfe.Pantalla_Principal_Almacen)(target)).KeyDown += new System.Windows.Input.KeyEventHandler(this.Window_KeyDown);

            #line default
            #line hidden
                return;

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

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

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

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

            #line 22 "..\..\..\PP_Almacen.xaml"
                this.BuscarPedidobutton.Click += new System.Windows.RoutedEventHandler(this.BuscarPedidobutton_Click);

            #line default
            #line hidden
                return;

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

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

            #line 47 "..\..\..\PP_Almacen.xaml"
                this.estadocomboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.estadocomboBox_SelectionChanged);

            #line default
            #line hidden
                return;

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

            #line 48 "..\..\..\PP_Almacen.xaml"
                this.limpiarbutton.Click += new System.Windows.RoutedEventHandler(this.limpiarbutton_Click);

            #line default
            #line hidden
                return;

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

            case 10:
                this.ListaPedidosdataGrid = ((System.Windows.Controls.DataGrid)(target));

            #line 77 "..\..\..\PP_Almacen.xaml"
                this.ListaPedidosdataGrid.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.ListaPedidosdataGrid_MouseDoubleClick);

            #line default
            #line hidden

            #line 77 "..\..\..\PP_Almacen.xaml"
                this.ListaPedidosdataGrid.LoadingRow += new System.EventHandler <System.Windows.Controls.DataGridRowEventArgs>(this.ListaPedidosdataGrid_LoadingRow);

            #line default
            #line hidden

            #line 77 "..\..\..\PP_Almacen.xaml"
                this.ListaPedidosdataGrid.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.ListaPedidosdataGrid_PreviewKeyDown);

            #line default
            #line hidden
                return;

            case 11:
                this.FechaIniciodtp = ((System.Windows.Controls.DatePicker)(target));
                return;

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

            #line 137 "..\..\..\PP_Almacen.xaml"
                this.Atenderpedidobutton.Click += new System.Windows.RoutedEventHandler(this.Atenderpedidobutton_Click);

            #line default
            #line hidden
                return;

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

            #line 138 "..\..\..\PP_Almacen.xaml"
                this.Imprimirbutton.Click += new System.Windows.RoutedEventHandler(this.Imprimirbutton_Click);

            #line default
            #line hidden
                return;

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

            #line 139 "..\..\..\PP_Almacen.xaml"
                this.btneditarpedido.Click += new System.Windows.RoutedEventHandler(this.btneditarpedido_Click);

            #line default
            #line hidden
                return;

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

            #line 140 "..\..\..\PP_Almacen.xaml"
                this.reabrirbutton.Click += new System.Windows.RoutedEventHandler(this.reabrirbutton_Click);

            #line default
            #line hidden
                return;

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

            #line 141 "..\..\..\PP_Almacen.xaml"
                this.AnularButton.Click += new System.Windows.RoutedEventHandler(this.AnularButton_Click);

            #line default
            #line hidden
                return;

            case 17:
                this.FechaFindtp = ((System.Windows.Controls.DatePicker)(target));
                return;

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

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

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

            #line 145 "..\..\..\PP_Almacen.xaml"
                this.btnimprimemarca.Click += new System.Windows.RoutedEventHandler(this.btnimprimemarca_Click);

            #line default
            #line hidden
                return;

            case 21:
                this.buscasolgroup = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

            #line 174 "..\..\..\PP_Almacen.xaml"
                this.BuscarSolicitudbutton.Click += new System.Windows.RoutedEventHandler(this.BuscarSolicitudbutton_Click);

            #line default
            #line hidden
                return;

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

            #line 175 "..\..\..\PP_Almacen.xaml"
                this.limpiarsolicitudestextbox.Click += new System.Windows.RoutedEventHandler(this.limpiarsolicitudestextbox_Click);

            #line default
            #line hidden
                return;

            case 25:
                this.solgroup = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 26:
                this.ListaSolicitudesdataGrid = ((System.Windows.Controls.DataGrid)(target));

            #line 181 "..\..\..\PP_Almacen.xaml"
                this.ListaSolicitudesdataGrid.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.ListaSolicitudesdataGrid_MouseDoubleClick);

            #line default
            #line hidden

            #line 181 "..\..\..\PP_Almacen.xaml"
                this.ListaSolicitudesdataGrid.LoadingRow += new System.EventHandler <System.Windows.Controls.DataGridRowEventArgs>(this.ListaSolicitudesdataGrid_LoadingRow);

            #line default
            #line hidden

            #line 181 "..\..\..\PP_Almacen.xaml"
                this.ListaSolicitudesdataGrid.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.ListaSolicitudesdataGrid_PreviewKeyDown);

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