private void buttonCreat_Click(object sender, RoutedEventArgs e) { try { PassengerName name = new PassengerName(); name.Name = textBoxData1.Text; DatePicker date = new DatePicker(); date.SelectedDate = DatePicker1.SelectedDate; date.DisplayDateStart = new DateTime(2 / 8 / 16); date.DisplayDateEnd = new DateTime(2 / 29 / 19); date.IsTodayHighlighted = true; filewritter1 filewriter = new filewritter1(); string PassengerInfo = null; if (radioMke.IsChecked == true) { PassengerInfo = (Environment.NewLine + this.textBoxData1.Text + " is leaving on " + this.DatePicker1 + " and the flight Origin and Destination is " + this.radioMke.Content); } else if (radioTpa.IsChecked == true) { PassengerInfo = (Environment.NewLine + textBoxData1.Text + " is leaving on " + this.DatePicker1 + " and the flight Origin and Destination is " + this.radioTpa.Content); } filewriter.Print(PassengerInfo, "Manifest.txt"); //this.Close(); MessageBox.Show(PassengerInfo); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
/// <summary> /// Definiert das DateRangePanel /// </summary> /// <param name="dateFromProcessingFunction">Funktion, die vom Start-DatePicker bei Änderung aufgerufen wird</param> /// <param name="dateToProcessingFunction">Funktion, die vom Ende-DatePicker bei Änderung aufgerufen wird</param> /// <param name="datePickerFrom">Referenz zum darzustellenden DatePicker für Start</param> /// <param name="datePickerTo">Referenz zum darzustellenden DatePicker für Ende</param> public DateRangePanel(Action<DateTime> dateFromProcessingFunction, Action<DateTime> dateToProcessingFunction, ref DatePicker datePickerFrom, ref DatePicker datePickerTo) { this.dateFromProcessingFunction = dateFromProcessingFunction; this.dateToProcessingFunction = dateToProcessingFunction; this.datePickerFrom = datePickerFrom; this.datePickerTo = datePickerTo; Label lbFrom = new Label(); Label lbTo = new Label(); lbFrom.Content = IniParser.GetSetting("APPSETTINGS", "dateRangeFrom"); lbTo.Content = IniParser.GetSetting("APPSETTINGS", "dateRangeTo"); lbTo.Margin = new Thickness(10, 0, 0, 0); this.datePickerFrom.Width = 95; this.datePickerTo.Width = 95; this.datePickerFrom.SelectedDate = BookingsHelper.getDateOfLastCashClosure(); this.datePickerTo.SelectedDate = DateTime.Today; this.datePickerFrom.SelectedDateChanged += processDateFrom; this.datePickerTo.SelectedDateChanged += processDateTo; panel = new WrapPanel(); panel.HorizontalAlignment = HorizontalAlignment.Right; panel.VerticalAlignment = VerticalAlignment.Top; panel.Margin = new Thickness(30, 10, 20, 0); // links nur 30px wegen Platzmangel in Toolbar von Modul pSums panel.Children.Add(lbFrom); panel.Children.Add(this.datePickerFrom); panel.Children.Add(lbTo); panel.Children.Add(this.datePickerTo); }
protected override FrameworkElement GenerateEditingElement(DataGridCell cell, object dataItem) { DatePicker picker = new DatePicker(); picker.SetBinding(DatePicker.SelectedDateProperty, this.Binding); picker.IsDropDownOpen = true; return picker; }
public YearPicker() { InitializeComponent(); this.SelectedYearChanged += default_SelectedYearChanged; datePicker = year_picker; year_picker.CalendarOpened += DatePicker_CalendarOpened; }
public DateTimeEditor(WorkFrame frame) : base(frame) { StackPanel panel = new StackPanel(); panel.Orientation = Orientation.Horizontal; time = new TextBox(); time.DataContext = this; time.Width = 64; var timeBinding = new Binding("Value"); timeBinding.Mode = BindingMode.TwoWay; timeBinding.Converter = this; time.SetBinding(TextBox.TextProperty, timeBinding); date = new DatePicker(); date.DataContext = this; var dateBinding = new Binding("Value"); dateBinding.Converter = new DateConvert(time); dateBinding.Mode = BindingMode.TwoWay; date.SetBinding(DatePicker.SelectedDateProperty, dateBinding); Button now = new Button(); now.Content = "当前时间"; now.Click += (s, e) => Value = DateTime.Now; panel.Children.Add(date); panel.Children.Add(time); panel.Children.Add(now); Content = panel; }
public FrameworkElement CreateView(PropertyInfo property) { var inputControl = new DatePicker(); var binding = new Binding(property.Name); binding.Mode = BindingMode.TwoWay; inputControl.SetBinding(DatePicker.SelectedDateProperty, binding); return inputControl; }
public override void OnApplyTemplate() { base.OnApplyTemplate(); DatePicker = (DatePicker)GetTemplateChild("PART_DatePicker"); DatePicker.SetBinding(DatePicker.SelectedDateProperty, new Binding { Source = this, Path = new PropertyPath(CurrentValueProperty), Mode = BindingMode.TwoWay }); DatePicker.SelectedDateChanged += DatePicker_SelectedDateChanged; }
/// <summary> /// Creates a new instance of the TimeOption /// </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 DocUIDate(XmlNode xmlNode, XmlSchemaAnnotated xsdNode, Panel contentpanel, Panel overlaypanel, DynamicForm parentForm) : base(xmlNode, xsdNode, contentpanel, overlaypanel, parentForm) { Control = new DatePicker(); //{ Form Format = TimeFormat.Custom, FormatString = "HH:mm:ss" }; //(Control as DatePicker).ValueChanged += (s, e) => { hasPendingChanges(); }; setup(); }
private void SetUpEndPicker() { _endDatePicker = new DatePicker(); _endDatePicker.Width = this.Width * 0.5; _endDatePicker.Height = this.Height * 0.05; _endDatePicker.FontSize = 20; _endDatePicker.SelectedDateChanged += _endDatePicker_SelectedDateChanged; }
public void InitializeComponent() { if (_contentLoaded) { return; } _contentLoaded = true; System.Windows.Application.LoadComponent(this, new System.Uri("/ISEstimate;component/ISDate.xaml", System.UriKind.Relative)); this.dtpDate = ((System.Windows.Controls.DatePicker)(this.FindName("dtpDate"))); this.btnOK = ((System.Windows.Controls.Button)(this.FindName("btnOK"))); }
protected override FrameworkElement GenerateElement(DataGridCell cell, object dataItem) { var element = new DatePicker { Style = Application.Current.Resources["DatePickerStyle"] as Style }; element.SetBinding(DatePicker.SelectedDateProperty, Binding); return element; }
protected override FrameworkElement GenerateEditingElement(DataGridCell cell, object dataItem) { DatePicker picker = new DatePicker(); picker.MinHeight = 16; picker.Padding = new Thickness(0); picker.BorderThickness = new Thickness(0); picker.SetBinding(DatePicker.SelectedDateProperty, Binding); picker.IsDropDownOpen = true; return picker; }
public DonorForm() { InitializeComponent(); CurrentDonor = new Donor(); // Объявляем текущий контект для Binding. donorInfoGrid.DataContext = CurrentDonor; DatePicker a = new DatePicker(); }
public void InitializeComponent() { if (_contentLoaded) { return; } _contentLoaded = true; System.Windows.Application.LoadComponent(this, new System.Uri("/%E5%A5%A5%E6%9E%AB%E7%87%83%E6%B0%94%E8%90%A5%E6%94%B6%E7%B3%BB%E7%BB%9FV3;compo" + "nent/Program/ObjectTools/DateTimePicker.xaml", System.UriKind.Relative)); this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot"))); this.DatePicker = ((System.Windows.Controls.DatePicker)(this.FindName("DatePicker"))); this.TimePicker = ((System.Windows.Controls.TimePicker)(this.FindName("TimePicker"))); }
private bool CheckDatePicker(DatePicker datePicker) { DateTime result; if (string.IsNullOrEmpty(datePicker.Text) || !DateTime.TryParse(datePicker.Text, out result)) { datePicker.Background = Brushes.LightPink; return false; } return true; }
public static bool IsEmpty(DatePicker[] datePicker) { foreach (var item in datePicker) { if (item.Text.Length <= 0 || string.IsNullOrEmpty(item.Text)) { return false; } } return true; }
protected override FrameworkElement GenerateEditingElement(DataGridCell cell, object dataItem) { var dp = new DatePicker {VerticalAlignment = VerticalAlignment.Stretch}; if (DateFormat != null) { IValueConverter dtc = new DateTimeConverter(); Binding.Converter = dtc; Binding.ConverterParameter = DateFormat; } dp.SetBinding(DatePicker.SelectedDateProperty, Binding); return dp; }
public void InitializeComponent() { if (_contentLoaded) { return; } _contentLoaded = true; System.Windows.Application.LoadComponent(this, new System.Uri("/NIS.Module.Laboratory;component/Views/Add/AddAmbulanciaZamestanecView.xaml", System.UriKind.Relative)); this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot"))); this.AddZamestanec = ((NeuroSpeech.UIAtoms.Controls.AtomForm)(this.FindName("AddZamestanec"))); this.ZamestanecPO_Meno = ((NeuroSpeech.UIAtoms.Controls.AtomTextBox)(this.FindName("ZamestanecPO_Meno"))); this.ZamestanecPO_Priezvisko = ((NeuroSpeech.UIAtoms.Controls.AtomTextBox)(this.FindName("ZamestanecPO_Priezvisko"))); this.ZamestanecPO_DatumNarodenia = ((System.Windows.Controls.DatePicker)(this.FindName("ZamestanecPO_DatumNarodenia"))); }
public pSums() { InitializeComponent(); this.datePickerFrom = new DatePicker(); this.datePickerTo = new DatePicker(); cbFilterAccount = new ComboBox(); cbFilterAccount.MinWidth = 150; cbFilterAccount.SelectionChanged += filterAccounts_SelectionChanged; generateDataGridDataUnfiltered(); }
protected override void initialize() { base.initialize(); //this.currentValue = this.Property.Value as DateTime?; this.Property.PropertyChanged += new System.ComponentModel.PropertyChangedEventHandler(this.property_PropertyChanged); this.Property.ValueError += new EventHandler<ExceptionEventArgs>(this.property_ValueError); this.pnl = new StackPanel { Orientation = System.Windows.Controls.Orientation.Horizontal, FlowDirection = System.Windows.FlowDirection.LeftToRight }; this.Content = pnl; this.dtp = new DatePicker { Visibility = Visibility.Visible, Margin = new Thickness(1, 0, 0, 0), VerticalAlignment = VerticalAlignment.Center, HorizontalAlignment = HorizontalAlignment.Left, Width = 120, IsEnabled = this.Property.CanWrite }; this.pnl.Children.Add(this.dtp); this.cbxHour = new ComboBox { Visibility = Visibility.Visible, Margin = new Thickness(2,0,0,0), VerticalAlignment = VerticalAlignment.Center, HorizontalAlignment = HorizontalAlignment.Left, Width = 50, IsEnabled = this.Property.CanWrite, Cursor = Cursors.Hand }; this.pnl.Children.Add(this.cbxHour); this.cbxMin = new ComboBox { Visibility = Visibility.Visible, Margin = new Thickness(2, 0, 0, 0), VerticalAlignment = VerticalAlignment.Center, HorizontalAlignment = HorizontalAlignment.Left, Width = 50, IsEnabled = this.Property.CanWrite, Cursor = Cursors.Hand }; this.pnl.Children.Add(this.cbxMin); this._init_cmbxs(); this.refreshControlsValue(); this.dtp.LostFocus += new RoutedEventHandler(this.dtp_LostFocus); this.dtp.SelectedDateChanged += new EventHandler<SelectionChangedEventArgs>(this.dtp_SelectedDateChanged); this.cbxHour.SelectionChanged += new SelectionChangedEventHandler(this.cbxTime_SelectionChanged); this.cbxMin.SelectionChanged += new SelectionChangedEventHandler(this.cbxTime_SelectionChanged); this.dtp.Focus(); }
public override FrameworkElement CreateControl(FormItemContext context) { DatePicker picker = new DatePicker(); var binding = new Binding(context.PropertyInfo.Name) { Mode = BindingMode.TwoWay, }; binding.ValidationRules.Add(new AnnotationValidationRule(context.PropertyInfo)); picker.SetBinding(DatePicker.SelectedDateProperty, binding); CustomValidation.SetValidationProperty(picker, DatePicker.SelectedDateProperty); StyleHelper.ApplyStyle(picker, FormControlConstrants.EDIT_DATE_STYLE); return picker; }
/// <summary> /// Creates a new instance of the TimeOption /// </summary> /// <param name="xmlNode">The xmlnode containing the data.</param> /// <param name="xsdNode">The corresponding xsdnode.</param> /// <param name="contentpanel">The panel on which this option should be placed.</param> /// <param name="parentForm">The form of which this option is a part.</param> public DocUIDateTime(XmlNode xmlNode, XmlSchemaAnnotated xsdNode, Panel contentpanel, Panel overlaypanel, DynamicForm parentForm) : base(xmlNode, xsdNode, contentpanel, overlaypanel, parentForm) { //Control = new DatePicker(); //{ Form Format = TimeFormat.Custom, FormatString = "HH:mm:ss" }; //(Control as DatePicker).ValueChanged += (s, e) => { hasPendingChanges(); }; stack = new StackPanel() { Orientation = Orientation.Horizontal }; Control = stack; DateControl = new DatePicker(); DateControl.SelectedDateChanged += (s, e) => { hasPendingChanges(); }; TimeControl = new TimePicker() { Format = TimeFormat.Custom, FormatString = "HH:mm:ss" }; TimeControl.ValueChanged += (s, e) => { hasPendingChanges(); }; setup(); }
public void InitializeComponent() { if (_contentLoaded) { return; } _contentLoaded = true; System.Windows.Application.LoadComponent(this, new System.Uri("/Segator.Loms.Modules.Dispatcher.Silverlight;component/Silverlight/Common/Setting" + "View.xaml", System.UriKind.Relative)); this.PageLoadEvent = ((System.Windows.Interactivity.InvokeCommandAction)(this.FindName("PageLoadEvent"))); this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot"))); this.dtpStartDate = ((System.Windows.Controls.DatePicker)(this.FindName("dtpStartDate"))); this.dtpEndDate = ((System.Windows.Controls.DatePicker)(this.FindName("dtpEndDate"))); this.btnClose = ((System.Windows.Controls.Button)(this.FindName("btnClose"))); this.btnReset = ((System.Windows.Controls.Button)(this.FindName("btnReset"))); this.btnApply = ((System.Windows.Controls.Button)(this.FindName("btnApply"))); }
public void InitializeComponent() { if (_contentLoaded) { return; } _contentLoaded = true; System.Windows.Application.LoadComponent(this, new System.Uri("/NIS.Module.Laboratory;component/Views/Add/AddPatientView.xaml", System.UriKind.Relative)); this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot"))); this.AddPatient = ((NeuroSpeech.UIAtoms.Controls.AtomForm)(this.FindName("AddPatient"))); this.PatientPO_Titul = ((NeuroSpeech.UIAtoms.Controls.AtomTextBox)(this.FindName("PatientPO_Titul"))); this.PatientPO_Meno = ((NeuroSpeech.UIAtoms.Controls.AtomTextBox)(this.FindName("PatientPO_Meno"))); this.PatientPO_Priezvisko = ((NeuroSpeech.UIAtoms.Controls.AtomTextBox)(this.FindName("PatientPO_Priezvisko"))); this.PatientPO_DatumNarodenia = ((System.Windows.Controls.DatePicker)(this.FindName("PatientPO_DatumNarodenia"))); this.PatientPO_Muz = ((System.Windows.Controls.RadioButton)(this.FindName("PatientPO_Muz"))); this.PatientPO_Zena = ((System.Windows.Controls.RadioButton)(this.FindName("PatientPO_Zena"))); }
public void InitializeComponent() { if (_contentLoaded) { return; } _contentLoaded = true; System.Windows.Application.LoadComponent(this, new System.Uri("/NIS.Module.Laboratory;component/Views/Add/AddVysetrenieView.xaml", System.UriKind.Relative)); this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot"))); this.BasicData = ((NeuroSpeech.UIAtoms.Controls.AtomForm)(this.FindName("BasicData"))); this.VzorkaText = ((NeuroSpeech.UIAtoms.Controls.AtomTextBox)(this.FindName("VzorkaText"))); this.VysetreniePO_Nazov = ((NeuroSpeech.UIAtoms.Controls.AtomTextBox)(this.FindName("VysetreniePO_Nazov"))); this.VysetreniePO_DatumPrijatia = ((System.Windows.Controls.DatePicker)(this.FindName("VysetreniePO_DatumPrijatia"))); this.VysetreniePO_DatumSchvalenia = ((System.Windows.Controls.DatePicker)(this.FindName("VysetreniePO_DatumSchvalenia"))); this.VysetreniePO_Komentar = ((NeuroSpeech.UIAtoms.Controls.AtomTextBox)(this.FindName("VysetreniePO_Komentar"))); this.dgVysledky = ((System.Windows.Controls.DataGrid)(this.FindName("dgVysledky"))); this.BasicData2 = ((NeuroSpeech.UIAtoms.Controls.AtomForm)(this.FindName("BasicData2"))); }
private static void SetCalendarEventHandlers(DatePicker datePicker, DependencyPropertyChangedEventArgs e) { if (e.NewValue == e.OldValue) return; if ((bool)e.NewValue) { datePicker.CalendarOpened += DatePickerOnCalendarOpened; datePicker.CalendarClosed += DatePickerOnCalendarClosed; } else { datePicker.CalendarOpened -= DatePickerOnCalendarOpened; datePicker.CalendarClosed -= DatePickerOnCalendarClosed; } }
public void InitializeComponent() { if (_contentLoaded) { return; } _contentLoaded = true; System.Windows.Application.LoadComponent(this, new System.Uri("/NIS.Module.Laboratory;component/Views/Add/AddVzorkaView.xaml", System.UriKind.Relative)); this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot"))); this.BasicData = ((NeuroSpeech.UIAtoms.Controls.AtomForm)(this.FindName("BasicData"))); this.PacientText = ((NeuroSpeech.UIAtoms.Controls.AtomTextBox)(this.FindName("PacientText"))); this.VzorkaPO_DatumOdberu = ((System.Windows.Controls.DatePicker)(this.FindName("VzorkaPO_DatumOdberu"))); this.Komentar = ((NeuroSpeech.UIAtoms.Controls.AtomTextBox)(this.FindName("Komentar"))); this.dgLieky = ((System.Windows.Controls.DataGrid)(this.FindName("dgLieky"))); this.dgInterfLieky = ((System.Windows.Controls.DataGrid)(this.FindName("dgInterfLieky"))); this.dgLatky = ((System.Windows.Controls.DataGrid)(this.FindName("dgLatky"))); this.dgVysLatky = ((System.Windows.Controls.DataGrid)(this.FindName("dgVysLatky"))); this.AddZamestanec = ((NeuroSpeech.UIAtoms.Controls.AtomForm)(this.FindName("AddZamestanec"))); }
public DateTimePicker() : base() { StackPanel pnl = new StackPanel(); InnerDatePicker = new DatePicker(); InnerTimePicker = new TimePicker(); InnerTimePicker.Width = 50; StackPanel spSpliter = new StackPanel(); spSpliter.Width = 5; pnl.Orientation = Orientation.Horizontal; pnl.Children.Add(InnerDatePicker); pnl.Children.Add(spSpliter); pnl.Children.Add(InnerTimePicker); this.Content = pnl; SetBinding(); }
public void InitializeComponent() { if (_contentLoaded) { return; } _contentLoaded = true; System.Windows.Application.LoadComponent(this, new System.Uri("/%E5%A5%A5%E6%9E%AB%E7%87%83%E6%B0%94%E8%90%A5%E6%94%B6%E7%B3%BB%E7%BB%9FV3;compo" + "nent/Pages/%E5%AE%89%E6%A3%80%E6%B1%87%E6%80%BB.xaml", System.UriKind.Relative)); this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot"))); this.pageResource = ((Com.Aote.Marks.ResourceLoad)(this.FindName("pageResource"))); this.repairManList = ((Com.Aote.ObjectTools.PagedList)(this.FindName("repairManList"))); this.criteriaPanel = ((System.Windows.Controls.Grid)(this.FindName("criteriaPanel"))); this.StartDate = ((System.Windows.Controls.DatePicker)(this.FindName("StartDate"))); this.EndDate = ((System.Windows.Controls.DatePicker)(this.FindName("EndDate"))); this.btnSearch = ((System.Windows.Controls.Button)(this.FindName("btnSearch"))); this.checkerGrid = ((System.Windows.Controls.DataGrid)(this.FindName("checkerGrid"))); this.checkerList = ((Com.Aote.ObjectTools.PagedList)(this.FindName("checkerList"))); }
public DateEditor(WorkFrame frame) : base(frame) { StackPanel panel = new StackPanel(); panel.Orientation = Orientation.Horizontal; DatePicker date = new DatePicker(); date.Width = 120; date.DataContext = this; var binding = new Binding("Value"); binding.Mode = BindingMode.TwoWay; date.SetBinding(DatePicker.SelectedDateProperty, binding); panel.Children.Add(date); Content = panel; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.grd_EmployeeDetails = ((System.Windows.Controls.Grid)(target)); return; case 2: this.cmbAdm_Emp_YearExp = ((System.Windows.Controls.ComboBox)(target)); return; case 3: this.cmbAdm_Emp_Months = ((System.Windows.Controls.ComboBox)(target)); return; case 4: this.btnAdm_Emp_Exit = ((System.Windows.Controls.Button)(target)); #line 11 "..\..\frmCRM_EmpDetailsEdit.xaml" this.btnAdm_Emp_Exit.Click += new System.Windows.RoutedEventHandler(this.btnAdm_Emp_Exit_Click); #line default #line hidden return; case 5: this.txtAdm_EmpName = ((System.Windows.Controls.TextBox)(target)); return; case 6: this.dtpAdm_Emp_DOB = ((System.Windows.Controls.DatePicker)(target)); return; case 7: this.txtAdm_Emp_Address = ((System.Windows.Controls.TextBox)(target)); return; case 8: this.txtAdm_Emp_Designation = ((System.Windows.Controls.TextBox)(target)); return; case 9: this.dtpAdm_Emp_DOJ = ((System.Windows.Controls.DatePicker)(target)); return; case 10: this.txtAdm_Emp_MobileNo = ((System.Windows.Controls.TextBox)(target)); return; case 11: this.Phone_No_ = ((System.Windows.Controls.Label)(target)); return; case 12: this.txtAdm_Emp_PhoneNo = ((System.Windows.Controls.TextBox)(target)); return; case 13: this.txtAdm_Emp_Salary = ((System.Windows.Controls.TextBox)(target)); return; case 14: this.btnAdm_Emp_Save = ((System.Windows.Controls.Button)(target)); #line 31 "..\..\frmCRM_EmpDetailsEdit.xaml" this.btnAdm_Emp_Save.Click += new System.Windows.RoutedEventHandler(this.btnAdm_Emp_Save_Click); #line default #line hidden return; case 15: this.lblYears = ((System.Windows.Controls.Label)(target)); return; case 16: this.lblMonths = ((System.Windows.Controls.Label)(target)); return; case 17: this.lblEmpID = ((System.Windows.Controls.Label)(target)); return; case 18: this.txtAdm_EmployeeID = ((System.Windows.Controls.TextBox)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.btnAddPerson = ((System.Windows.Controls.Button)(target)); #line 18 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.btnAddPerson.Click += new System.Windows.RoutedEventHandler(this.btnAddPerson_Click); #line default #line hidden return; case 2: this.firstName = ((System.Windows.Controls.TextBox)(target)); #line 19 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.firstName.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.textBox_TextChanged); #line default #line hidden return; case 3: this.labelfirstname = ((System.Windows.Controls.Label)(target)); return; case 4: this.lastName = ((System.Windows.Controls.TextBox)(target)); #line 21 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.lastName.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.textBox_TextChanged); #line default #line hidden return; case 5: this.labellastname = ((System.Windows.Controls.Label)(target)); return; case 6: this.labeldbo = ((System.Windows.Controls.Label)(target)); return; case 7: this.lvPersons = ((System.Windows.Controls.ListView)(target)); #line 25 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.lvPersons.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lvPersons_SelectionChanged); #line default #line hidden #line 25 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.lvPersons.AddHandler(System.Windows.Controls.Primitives.ButtonBase.ClickEvent, new System.Windows.RoutedEventHandler(this.lvColumnHeader_Click)); #line default #line hidden return; case 8: this.btnRefreshPersons = ((System.Windows.Controls.Button)(target)); #line 61 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.btnRefreshPersons.Click += new System.Windows.RoutedEventHandler(this.btnRefreshPersons_Click); #line default #line hidden return; case 9: this.btnDeletePerson = ((System.Windows.Controls.Button)(target)); #line 62 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.btnDeletePerson.Click += new System.Windows.RoutedEventHandler(this.btnDeletePerson_Click); #line default #line hidden return; case 10: this.date = ((System.Windows.Controls.DatePicker)(target)); #line 63 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.date.SelectedDateChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.DatePicker_SelectedDateChanged); #line default #line hidden return; case 11: this.label1 = ((System.Windows.Controls.Label)(target)); return; case 12: this.btnEditPerson = ((System.Windows.Controls.Button)(target)); #line 65 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.btnEditPerson.Click += new System.Windows.RoutedEventHandler(this.btnEditPerson_Click); #line default #line hidden return; case 13: this.searchBox = ((System.Windows.Controls.TextBox)(target)); #line 67 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.searchBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.search); #line default #line hidden return; case 14: this.cBoxClients = ((System.Windows.Controls.ComboBox)(target)); #line 75 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.cBoxClients.Loaded += new System.Windows.RoutedEventHandler(this.cBoxClients_Loaded); #line default #line hidden #line 76 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.cBoxClients.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cbClients_SelectionChanged); #line default #line hidden return; case 15: this.clientTxtBox = ((System.Windows.Controls.Label)(target)); return; case 16: this.label_Copy = ((System.Windows.Controls.Label)(target)); return; case 17: this.contactValueBox = ((System.Windows.Controls.TextBox)(target)); #line 80 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.contactValueBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.textBox_TextChanged); #line default #line hidden return; case 18: this.lvContacts = ((System.Windows.Controls.ListView)(target)); #line 81 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.lvContacts.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lvContacts_SelectionChanged); #line default #line hidden #line 81 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.lvContacts.AddHandler(System.Windows.Controls.Primitives.ButtonBase.ClickEvent, new System.Windows.RoutedEventHandler(this.lvColumnHeader_Click)); #line default #line hidden return; case 19: this.labelPositions = ((System.Windows.Controls.Label)(target)); return; case 20: this.cBoxPositionTypes = ((System.Windows.Controls.ComboBox)(target)); #line 110 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.cBoxPositionTypes.Loaded += new System.Windows.RoutedEventHandler(this.cBoxPositionTypes_Loaded); #line default #line hidden #line 111 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.cBoxPositionTypes.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cBoxContactTypes_SelectionChanged); #line default #line hidden return; case 21: this.labelContacts = ((System.Windows.Controls.Label)(target)); return; case 22: this.cBoxContactTypes = ((System.Windows.Controls.ComboBox)(target)); #line 120 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.cBoxContactTypes.Loaded += new System.Windows.RoutedEventHandler(this.cBoxContactTypes_Loaded); #line default #line hidden #line 121 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.cBoxContactTypes.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cBoxContactTypes_SelectionChanged); #line default #line hidden return; case 23: this.btnAddContact = ((System.Windows.Controls.Button)(target)); #line 122 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.btnAddContact.Click += new System.Windows.RoutedEventHandler(this.btnAddContact_Click); #line default #line hidden return; case 24: this.label_ContactType = ((System.Windows.Controls.Label)(target)); return; case 25: this.btnEditContact = ((System.Windows.Controls.Button)(target)); #line 124 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.btnEditContact.Click += new System.Windows.RoutedEventHandler(this.btnEditContact_Click); #line default #line hidden return; case 26: this.btnDeleteContact = ((System.Windows.Controls.Button)(target)); #line 125 "..\..\..\..\Views\Pages\PersonsPage.xaml" this.btnDeleteContact.Click += new System.Windows.RoutedEventHandler(this.btnDeleteContact_Click); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 10 "..\..\..\Expenses\Other_Expense.xaml" ((Project_Transport.Other_Expense)(target)).Loaded += new System.Windows.RoutedEventHandler(this.UserControl_Loaded); #line default #line hidden return; case 2: this.others_panel = ((System.Windows.Controls.StackPanel)(target)); return; case 3: this.other_btn1 = ((System.Windows.Controls.Button)(target)); #line 20 "..\..\..\Expenses\Other_Expense.xaml" this.other_btn1.Click += new System.Windows.RoutedEventHandler(this.other_expense_insert); #line default #line hidden return; case 4: this.other_btn2 = ((System.Windows.Controls.Button)(target)); #line 21 "..\..\..\Expenses\Other_Expense.xaml" this.other_btn2.Click += new System.Windows.RoutedEventHandler(this.other_expense_update); #line default #line hidden return; case 5: this.other_btn3 = ((System.Windows.Controls.Button)(target)); #line 22 "..\..\..\Expenses\Other_Expense.xaml" this.other_btn3.Click += new System.Windows.RoutedEventHandler(this.other_expense_view); #line default #line hidden return; case 6: this.other_dedtails_insert = ((System.Windows.Controls.StackPanel)(target)); return; case 7: this.other_bl1 = ((System.Windows.Controls.Label)(target)); return; case 8: this.other_descrip = ((System.Windows.Controls.TextBox)(target)); return; case 9: this.other_bl2 = ((System.Windows.Controls.Label)(target)); return; case 10: this.other_quantity = ((System.Windows.Controls.TextBox)(target)); return; case 11: this.other_bl3 = ((System.Windows.Controls.Label)(target)); return; case 12: this.other_rate = ((System.Windows.Controls.TextBox)(target)); #line 45 "..\..\..\Expenses\Other_Expense.xaml" this.other_rate.KeyDown += new System.Windows.Input.KeyEventHandler(this.other_rate_keydown); #line default #line hidden #line 45 "..\..\..\Expenses\Other_Expense.xaml" this.other_rate.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.Rate_PreViewTextInput); #line default #line hidden #line 45 "..\..\..\Expenses\Other_Expense.xaml" this.other_rate.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.Other_Rate_Textchanged); #line default #line hidden return; case 13: this.other_bl4 = ((System.Windows.Controls.Label)(target)); return; case 14: this.other_price = ((System.Windows.Controls.TextBox)(target)); return; case 15: this.other_vehicle_num = ((System.Windows.Controls.ComboBox)(target)); #line 57 "..\..\..\Expenses\Other_Expense.xaml" this.other_vehicle_num.KeyDown += new System.Windows.Input.KeyEventHandler(this.other_vehicle_num_keydown); #line default #line hidden #line 57 "..\..\..\Expenses\Other_Expense.xaml" this.other_vehicle_num.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.Other_Vehicle_Number_PreviewKeydown); #line default #line hidden return; case 16: this.other_bill_date = ((System.Windows.Controls.DatePicker)(target)); return; case 17: this.other_view_bill_number = ((System.Windows.Controls.ComboBox)(target)); #line 67 "..\..\..\Expenses\Other_Expense.xaml" this.other_view_bill_number.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.Other_Bill_Number_PreviewKeydown); #line default #line hidden return; case 18: this.other_add_all_bill_number = ((System.Windows.Controls.CheckBox)(target)); #line 76 "..\..\..\Expenses\Other_Expense.xaml" this.other_add_all_bill_number.Checked += new System.Windows.RoutedEventHandler(this.other_add_all_bill_number_checked); #line default #line hidden return; case 19: this.other_bill_no = ((System.Windows.Controls.Label)(target)); return; case 20: this.other_bill_num = ((System.Windows.Controls.TextBox)(target)); #line 78 "..\..\..\Expenses\Other_Expense.xaml" this.other_bill_num.KeyDown += new System.Windows.Input.KeyEventHandler(this.other_bill_num_keydown); #line default #line hidden return; case 21: this.other_add = ((System.Windows.Controls.Button)(target)); #line 87 "..\..\..\Expenses\Other_Expense.xaml" this.other_add.Click += new System.Windows.RoutedEventHandler(this.other_add_new_row); #line default #line hidden return; case 22: this.other_S_NO = ((System.Windows.Controls.TextBox)(target)); return; case 23: this.other_sample = ((System.Windows.Controls.DataGrid)(target)); #line 96 "..\..\..\Expenses\Other_Expense.xaml" this.other_sample.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.other_sample_mouseclick); #line default #line hidden return; case 24: this.other_L3 = ((System.Windows.Controls.Label)(target)); return; case 25: this.other_discount = ((System.Windows.Controls.TextBox)(target)); #line 101 "..\..\..\Expenses\Other_Expense.xaml" this.other_discount.KeyDown += new System.Windows.Input.KeyEventHandler(this.other_discount_keydown); #line default #line hidden #line 101 "..\..\..\Expenses\Other_Expense.xaml" this.other_discount.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.Discount_PreViewTextInput); #line default #line hidden return; case 26: this.other_L1 = ((System.Windows.Controls.Label)(target)); return; case 27: this.other_total_amount = ((System.Windows.Controls.TextBox)(target)); return; case 28: this.other_L2 = ((System.Windows.Controls.Label)(target)); return; case 29: this.other_gnd_total_amount = ((System.Windows.Controls.TextBox)(target)); return; case 30: this.other_done_bttn = ((System.Windows.Controls.Button)(target)); #line 115 "..\..\..\Expenses\Other_Expense.xaml" this.other_done_bttn.Click += new System.Windows.RoutedEventHandler(this.insert_other_details); #line default #line hidden return; case 31: this.other_clear_bttn = ((System.Windows.Controls.Button)(target)); #line 125 "..\..\..\Expenses\Other_Expense.xaml" this.other_clear_bttn.Click += new System.Windows.RoutedEventHandler(this.other_details_clear); #line default #line hidden return; } this._contentLoaded = true; }
private static ButtonBase GetTemplateButton(DatePicker datePicker) { return((ButtonBase)datePicker.Template.FindName("PART_Button", datePicker)); }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 9 "..\..\..\..\Forms\CreditNote.xaml" ((eTaxInvoicePdfGenerator.Forms.CreditNote)(target)).Closed += new System.EventHandler(this.Window_Closed); #line default #line hidden #line 9 "..\..\..\..\Forms\CreditNote.xaml" ((eTaxInvoicePdfGenerator.Forms.CreditNote)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden return; case 2: this.image = ((System.Windows.Controls.Image)(target)); return; case 3: this.image1 = ((System.Windows.Controls.Image)(target)); return; case 4: this.label1 = ((System.Windows.Controls.Label)(target)); return; case 5: this.label2 = ((System.Windows.Controls.Label)(target)); return; case 6: this.address1Tb = ((System.Windows.Controls.TextBox)(target)); return; case 7: this.address2Tb = ((System.Windows.Controls.TextBox)(target)); return; case 8: this.zipcodeTb = ((System.Windows.Controls.TextBox)(target)); return; case 9: this.label3 = ((System.Windows.Controls.Label)(target)); return; case 10: this.label4 = ((System.Windows.Controls.Label)(target)); return; case 11: this.taxIdTb = ((System.Windows.Controls.TextBox)(target)); return; case 12: this.is_main = ((System.Windows.Controls.RadioButton)(target)); #line 28 "..\..\..\..\Forms\CreditNote.xaml" this.is_main.Checked += new System.Windows.RoutedEventHandler(this.is_main_Checked); #line default #line hidden return; case 13: this.is_branch = ((System.Windows.Controls.RadioButton)(target)); #line 29 "..\..\..\..\Forms\CreditNote.xaml" this.is_branch.Checked += new System.Windows.RoutedEventHandler(this.is_branch_Checked); #line default #line hidden return; case 14: this.branchNoTb = ((System.Windows.Controls.TextBox)(target)); #line 30 "..\..\..\..\Forms\CreditNote.xaml" this.branchNoTb.LostFocus += new System.Windows.RoutedEventHandler(this.branchNoTb_LostFocus); #line default #line hidden return; case 15: this.label6 = ((System.Windows.Controls.Label)(target)); return; case 16: this.websiteTb = ((System.Windows.Controls.TextBox)(target)); return; case 17: this.label7 = ((System.Windows.Controls.Label)(target)); return; case 18: this.label8 = ((System.Windows.Controls.Label)(target)); return; case 19: this.emailTb = ((System.Windows.Controls.TextBox)(target)); return; case 20: this.contactTb = ((System.Windows.Controls.TextBox)(target)); return; case 21: this.label9 = ((System.Windows.Controls.Label)(target)); return; case 22: this.label10 = ((System.Windows.Controls.Label)(target)); return; case 23: this.label11 = ((System.Windows.Controls.Label)(target)); return; case 24: this.label12 = ((System.Windows.Controls.Label)(target)); return; case 25: this.phoneNoTb = ((System.Windows.Controls.TextBox)(target)); #line 41 "..\..\..\..\Forms\CreditNote.xaml" this.phoneNoTb.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.phoneNoTb_TextChanged); #line default #line hidden return; case 26: this.faxNoTb = ((System.Windows.Controls.TextBox)(target)); #line 42 "..\..\..\..\Forms\CreditNote.xaml" this.faxNoTb.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.faxNoTb_TextChanged); #line default #line hidden return; case 27: this.label13 = ((System.Windows.Controls.Label)(target)); return; case 28: this.label14 = ((System.Windows.Controls.Label)(target)); return; case 29: this.label15 = ((System.Windows.Controls.Label)(target)); return; case 30: this.purposeTb = ((System.Windows.Controls.TextBox)(target)); return; case 31: this.phoneExtTb = ((System.Windows.Controls.TextBox)(target)); #line 47 "..\..\..\..\Forms\CreditNote.xaml" this.phoneExtTb.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.phoneExtTb_TextChanged); #line default #line hidden return; case 32: this.faxExtTb = ((System.Windows.Controls.TextBox)(target)); #line 48 "..\..\..\..\Forms\CreditNote.xaml" this.faxExtTb.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.faxExtTb_TextChanged); #line default #line hidden return; case 33: this.addRefBtn = ((System.Windows.Controls.Button)(target)); #line 49 "..\..\..\..\Forms\CreditNote.xaml" this.addRefBtn.Click += new System.Windows.RoutedEventHandler(this.addRefBtn_Click); #line default #line hidden return; case 34: this.addItemBtn = ((System.Windows.Controls.Button)(target)); #line 52 "..\..\..\..\Forms\CreditNote.xaml" this.addItemBtn.Click += new System.Windows.RoutedEventHandler(this.addItemBtn_Click); #line default #line hidden return; case 35: this.deleteItemBtn = ((System.Windows.Controls.Button)(target)); #line 55 "..\..\..\..\Forms\CreditNote.xaml" this.deleteItemBtn.Click += new System.Windows.RoutedEventHandler(this.deleteItemBtn_Click); #line default #line hidden return; case 36: this.listView = ((System.Windows.Controls.ListView)(target)); return; case 38: this.label19 = ((System.Windows.Controls.Label)(target)); return; case 39: this.lineTotalTb = ((System.Windows.Controls.TextBox)(target)); return; case 40: this.taxTotalTb = ((System.Windows.Controls.TextBox)(target)); return; case 41: this.grandTotalTb = ((System.Windows.Controls.TextBox)(target)); return; case 42: this.createBtn = ((System.Windows.Controls.Button)(target)); #line 103 "..\..\..\..\Forms\CreditNote.xaml" this.createBtn.Click += new System.Windows.RoutedEventHandler(this.createBtn_Click); #line default #line hidden return; case 43: this.exitBtn = ((System.Windows.Controls.Button)(target)); #line 106 "..\..\..\..\Forms\CreditNote.xaml" this.exitBtn.Click += new System.Windows.RoutedEventHandler(this.exitBtn_Click); #line default #line hidden return; case 44: this.vatTb = ((System.Windows.Controls.TextBox)(target)); #line 109 "..\..\..\..\Forms\CreditNote.xaml" this.vatTb.KeyUp += new System.Windows.Input.KeyEventHandler(this.vatTb_KeyUp); #line default #line hidden return; case 45: this.label23 = ((System.Windows.Controls.Label)(target)); return; case 46: this.label24 = ((System.Windows.Controls.Label)(target)); return; case 47: this.label25 = ((System.Windows.Controls.Label)(target)); return; case 48: this.label26 = ((System.Windows.Controls.Label)(target)); return; case 49: this.label27 = ((System.Windows.Controls.Label)(target)); return; case 50: this.label30 = ((System.Windows.Controls.Label)(target)); return; case 51: this.label31 = ((System.Windows.Controls.Label)(target)); return; case 52: this.nameCbb = ((System.Windows.Controls.ComboBox)(target)); #line 117 "..\..\..\..\Forms\CreditNote.xaml" this.nameCbb.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.nameCbb_SelectionChanged); #line default #line hidden return; case 53: this.diffValueTb = ((System.Windows.Controls.TextBox)(target)); return; case 54: this.label27_Copy = ((System.Windows.Controls.Label)(target)); return; case 55: this.label27_Copy1 = ((System.Windows.Controls.Label)(target)); return; case 56: this.originalValueTotal = ((System.Windows.Controls.TextBox)(target)); #line 121 "..\..\..\..\Forms\CreditNote.xaml" this.originalValueTotal.KeyUp += new System.Windows.Input.KeyEventHandler(this.originalValueTotal_KeyUp); #line default #line hidden #line 121 "..\..\..\..\Forms\CreditNote.xaml" this.originalValueTotal.GotFocus += new System.Windows.RoutedEventHandler(this.originalValueTotal_GotFocus); #line default #line hidden #line 121 "..\..\..\..\Forms\CreditNote.xaml" this.originalValueTotal.LostFocus += new System.Windows.RoutedEventHandler(this.originalValueTotal_LostFocus); #line default #line hidden return; case 57: this.label32 = ((System.Windows.Controls.Label)(target)); return; case 58: this.label33 = ((System.Windows.Controls.Label)(target)); return; case 59: this.remarkTb = ((System.Windows.Controls.TextBox)(target)); return; case 60: this.label34 = ((System.Windows.Controls.Label)(target)); return; case 61: this.groupBox = ((System.Windows.Controls.GroupBox)(target)); return; case 62: this.label16 = ((System.Windows.Controls.Label)(target)); return; case 63: this.label17 = ((System.Windows.Controls.Label)(target)); return; case 64: this.docIdTb = ((System.Windows.Controls.TextBox)(target)); return; case 65: this.label18 = ((System.Windows.Controls.Label)(target)); return; case 66: this.typeCodeTb = ((System.Windows.Controls.ComboBox)(target)); return; case 67: this.docDateTb = ((System.Windows.Controls.DatePicker)(target)); return; case 68: this.shutdownBtn = ((System.Windows.Controls.Button)(target)); #line 142 "..\..\..\..\Forms\CreditNote.xaml" this.shutdownBtn.Click += new System.Windows.RoutedEventHandler(this.shutdownBtn_Click); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 7 "..\..\Insertar.xaml" ((SegundaEvaluacion.Insertar)(target)).Loaded += new System.Windows.RoutedEventHandler(this.UserControl_Loaded); #line default #line hidden return; case 2: this.ventanaUsuarios = ((System.Windows.Controls.Grid)(target)); return; case 3: this.titulo = ((System.Windows.Controls.Label)(target)); return; case 4: this.t_nombre = ((System.Windows.Controls.TextBox)(target)); #line 28 "..\..\Insertar.xaml" this.t_nombre.LostFocus += new System.Windows.RoutedEventHandler(this.nombre_LostFocus); #line default #line hidden #line 28 "..\..\Insertar.xaml" this.t_nombre.KeyDown += new System.Windows.Input.KeyEventHandler(this.t_nombre_KeyDown); #line default #line hidden #line 28 "..\..\Insertar.xaml" this.t_nombre.GotFocus += new System.Windows.RoutedEventHandler(this.t_nombre_GotFocus); #line default #line hidden return; case 5: this.t_apellidos = ((System.Windows.Controls.TextBox)(target)); #line 32 "..\..\Insertar.xaml" this.t_apellidos.KeyDown += new System.Windows.Input.KeyEventHandler(this.t_apellidos_KeyDown); #line default #line hidden #line 32 "..\..\Insertar.xaml" this.t_apellidos.LostFocus += new System.Windows.RoutedEventHandler(this.t_apellidos_LostFocus); #line default #line hidden #line 32 "..\..\Insertar.xaml" this.t_apellidos.GotFocus += new System.Windows.RoutedEventHandler(this.t_apellidos_GotFocus); #line default #line hidden return; case 6: this.t_email = ((System.Windows.Controls.TextBox)(target)); #line 33 "..\..\Insertar.xaml" this.t_email.GotFocus += new System.Windows.RoutedEventHandler(this.t_email_GotFocus); #line default #line hidden #line 33 "..\..\Insertar.xaml" this.t_email.KeyDown += new System.Windows.Input.KeyEventHandler(this.t_email_KeyDown); #line default #line hidden #line 33 "..\..\Insertar.xaml" this.t_email.LostFocus += new System.Windows.RoutedEventHandler(this.t_email_LostFocus); #line default #line hidden return; case 7: this.t_dni = ((System.Windows.Controls.TextBox)(target)); #line 34 "..\..\Insertar.xaml" this.t_dni.GotFocus += new System.Windows.RoutedEventHandler(this.t_dni_GotFocus); #line default #line hidden #line 34 "..\..\Insertar.xaml" this.t_dni.KeyDown += new System.Windows.Input.KeyEventHandler(this.t_dni_KeyDown); #line default #line hidden #line 34 "..\..\Insertar.xaml" this.t_dni.LostFocus += new System.Windows.RoutedEventHandler(this.t_dni_LostFocus); #line default #line hidden #line 34 "..\..\Insertar.xaml" this.t_dni.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.t_dni_TextChanged); #line default #line hidden return; case 8: this.paisCombo = ((System.Windows.Controls.ComboBox)(target)); #line 36 "..\..\Insertar.xaml" this.paisCombo.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.paisCombo_SelectionChanged); #line default #line hidden #line 39 "..\..\Insertar.xaml" this.paisCombo.MouseLeave += new System.Windows.Input.MouseEventHandler(this.paisCombo_MouseLeave); #line default #line hidden #line 39 "..\..\Insertar.xaml" this.paisCombo.GotFocus += new System.Windows.RoutedEventHandler(this.paisCombo_GotFocus); #line default #line hidden #line 39 "..\..\Insertar.xaml" this.paisCombo.LostFocus += new System.Windows.RoutedEventHandler(this.paisCombo_LostFocus); #line default #line hidden #line 39 "..\..\Insertar.xaml" this.paisCombo.ContextMenuOpening += new System.Windows.Controls.ContextMenuEventHandler(this.paisCombo_ContextMenuOpening); #line default #line hidden return; case 9: this.localCombo = ((System.Windows.Controls.ComboBox)(target)); #line 50 "..\..\Insertar.xaml" this.localCombo.GotFocus += new System.Windows.RoutedEventHandler(this.localCombo_GotFocus); #line default #line hidden #line 52 "..\..\Insertar.xaml" this.localCombo.LostFocus += new System.Windows.RoutedEventHandler(this.localCombo_LostFocus_1); #line default #line hidden return; case 10: this.t_telefono = ((System.Windows.Controls.TextBox)(target)); #line 61 "..\..\Insertar.xaml" this.t_telefono.LostFocus += new System.Windows.RoutedEventHandler(this.t_telefono_LostFocus); #line default #line hidden #line 61 "..\..\Insertar.xaml" this.t_telefono.KeyDown += new System.Windows.Input.KeyEventHandler(this.t_telefono_KeyDown); #line default #line hidden #line 61 "..\..\Insertar.xaml" this.t_telefono.GotFocus += new System.Windows.RoutedEventHandler(this.t_telefono_GotFocus); #line default #line hidden return; case 11: this.t_direccion = ((System.Windows.Controls.TextBox)(target)); #line 62 "..\..\Insertar.xaml" this.t_direccion.KeyDown += new System.Windows.Input.KeyEventHandler(this.t_direccion_KeyDown); #line default #line hidden #line 62 "..\..\Insertar.xaml" this.t_direccion.LostFocus += new System.Windows.RoutedEventHandler(this.t_direccion_LostFocus); #line default #line hidden #line 62 "..\..\Insertar.xaml" this.t_direccion.GotFocus += new System.Windows.RoutedEventHandler(this.t_direccion_GotFocus); #line default #line hidden return; case 12: this.codigo_postal = ((System.Windows.Controls.TextBox)(target)); #line 64 "..\..\Insertar.xaml" this.codigo_postal.GotFocus += new System.Windows.RoutedEventHandler(this.codigo_postal_GotFocus); #line default #line hidden #line 64 "..\..\Insertar.xaml" this.codigo_postal.KeyDown += new System.Windows.Input.KeyEventHandler(this.codigo_postal_KeyDown); #line default #line hidden #line 64 "..\..\Insertar.xaml" this.codigo_postal.LostFocus += new System.Windows.RoutedEventHandler(this.codigo_postal_LostFocus); #line default #line hidden return; case 13: #line 67 "..\..\Insertar.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); #line default #line hidden return; case 14: this.pass = ((System.Windows.Controls.PasswordBox)(target)); #line 73 "..\..\Insertar.xaml" this.pass.MouseLeave += new System.Windows.Input.MouseEventHandler(this.pass_MouseLeave); #line default #line hidden #line 73 "..\..\Insertar.xaml" this.pass.LostFocus += new System.Windows.RoutedEventHandler(this.pass_LostFocus); #line default #line hidden #line 73 "..\..\Insertar.xaml" this.pass.KeyDown += new System.Windows.Input.KeyEventHandler(this.pass_KeyDown); #line default #line hidden return; case 15: this.t_date = ((System.Windows.Controls.DatePicker)(target)); #line 92 "..\..\Insertar.xaml" this.t_date.GotFocus += new System.Windows.RoutedEventHandler(this.t_date_GotFocus); #line default #line hidden #line 92 "..\..\Insertar.xaml" this.t_date.KeyDown += new System.Windows.Input.KeyEventHandler(this.t_date_KeyDown); #line default #line hidden #line 92 "..\..\Insertar.xaml" this.t_date.LostFocus += new System.Windows.RoutedEventHandler(this.t_date_LostFocus); #line default #line hidden #line 93 "..\..\Insertar.xaml" this.t_date.MouseLeave += new System.Windows.Input.MouseEventHandler(this.t_date_MouseLeave); #line default #line hidden return; case 16: this.t_pass = ((System.Windows.Controls.TextBox)(target)); #line 135 "..\..\Insertar.xaml" this.t_pass.MouseEnter += new System.Windows.Input.MouseEventHandler(this.t_pass_MouseEnter); #line default #line hidden #line 135 "..\..\Insertar.xaml" this.t_pass.MouseLeave += new System.Windows.Input.MouseEventHandler(this.t_pass_MouseLeave); #line default #line hidden #line 135 "..\..\Insertar.xaml" this.t_pass.KeyDown += new System.Windows.Input.KeyEventHandler(this.t_pass_KeyDown); #line default #line hidden #line 135 "..\..\Insertar.xaml" this.t_pass.GotFocus += new System.Windows.RoutedEventHandler(this.t_pass_GotFocus); #line default #line hidden return; case 17: this.mensajeError = ((System.Windows.Controls.TextBox)(target)); #line 137 "..\..\Insertar.xaml" this.mensajeError.LostFocus += new System.Windows.RoutedEventHandler(this.mensajeError_LostFocus); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 8 "..\..\w_Pedido.xaml" ((EcommerceUaa.w_Pedido)(target)).Loaded += new System.Windows.RoutedEventHandler(this.WindoLoaded); #line default #line hidden return; case 2: this.dgvPedidos = ((System.Windows.Controls.DataGrid)(target)); #line 10 "..\..\w_Pedido.xaml" this.dgvPedidos.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.DgvPedidosChanged); #line default #line hidden return; case 3: this.btnAgregar = ((System.Windows.Controls.Button)(target)); #line 12 "..\..\w_Pedido.xaml" this.btnAgregar.Click += new System.Windows.RoutedEventHandler(this.BtnAgregar_Click); #line default #line hidden return; case 4: this.txtDescuento = ((System.Windows.Controls.TextBox)(target)); return; case 5: this.btnCancelar = ((System.Windows.Controls.Button)(target)); #line 15 "..\..\w_Pedido.xaml" this.btnCancelar.Click += new System.Windows.RoutedEventHandler(this.BtnCancelar_Click); #line default #line hidden return; case 6: this.dgvOrdenes = ((System.Windows.Controls.DataGrid)(target)); return; case 7: this.label = ((System.Windows.Controls.Label)(target)); return; case 8: this.label1 = ((System.Windows.Controls.Label)(target)); return; case 9: this.txtChofer = ((System.Windows.Controls.TextBox)(target)); return; case 10: this.dtpFecha = ((System.Windows.Controls.DatePicker)(target)); return; case 11: this.label2 = ((System.Windows.Controls.Label)(target)); return; case 12: #line 22 "..\..\w_Pedido.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.WindowFragt_index = ((TecCargo_Faktura.MainFragtBrev)(target)); #line 8 "..\..\MainFragtBrev.xaml" this.WindowFragt_index.PreviewMouseUp += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseLeftButtonUp); #line default #line hidden #line 9 "..\..\MainFragtBrev.xaml" this.WindowFragt_index.Closing += new System.ComponentModel.CancelEventHandler(this.WindowFragt_index_Closed); #line default #line hidden #line 9 "..\..\MainFragtBrev.xaml" this.WindowFragt_index.Loaded += new System.Windows.RoutedEventHandler(this.WindowFragt_index_Loaded); #line default #line hidden return; case 2: this.ScrollviewBox = ((System.Windows.Controls.ScrollViewer)(target)); return; case 3: #line 17 "..\..\MainFragtBrev.xaml" ((System.Windows.Controls.Grid)(target)).GotFocus += new System.Windows.RoutedEventHandler(this.WindowFragt_index_GotFocus); #line default #line hidden return; case 4: this.GroupBoxGenerelt = ((System.Windows.Controls.GroupBox)(target)); return; case 5: this.TextBoxGenerelt_reference = ((System.Windows.Controls.TextBox)(target)); return; case 6: this.TextBoxGenerelt_fragtmand = ((System.Windows.Controls.TextBox)(target)); return; case 7: this.TextBoxGenerelt_efterkrav = ((System.Windows.Controls.TextBox)(target)); return; case 8: this.TextBoxGenerelt_rute1 = ((System.Windows.Controls.TextBox)(target)); return; case 9: this.TextBoxGenerelt_rute2 = ((System.Windows.Controls.TextBox)(target)); return; case 10: this.TextBoxGenerelt_forsikring = ((System.Windows.Controls.TextBox)(target)); return; case 11: this.TextBoxGenerelt_praemie = ((System.Windows.Controls.TextBox)(target)); return; case 12: this.TextBoxGenerelt_ialt = ((System.Windows.Controls.TextBox)(target)); return; case 13: this.ComboBoxGenerelt_type = ((System.Windows.Controls.ComboBox)(target)); return; case 14: this.DatePickerGenerelt_dag1 = ((System.Windows.Controls.DatePicker)(target)); return; case 15: this.DatePickerGenerelt_dag2 = ((System.Windows.Controls.DatePicker)(target)); return; case 16: this.CheckBoxGenerelt_efterkrav = ((System.Windows.Controls.CheckBox)(target)); #line 61 "..\..\MainFragtBrev.xaml" this.CheckBoxGenerelt_efterkrav.Click += new System.Windows.RoutedEventHandler(this.CheckBoxGenerelt_efterkrav_Click); #line default #line hidden #line 61 "..\..\MainFragtBrev.xaml" this.CheckBoxGenerelt_efterkrav.Checked += new System.Windows.RoutedEventHandler(this.CheckBoxGenerelt_efterkrav_Click); #line default #line hidden return; case 17: this.GroupBoxByttepaller = ((System.Windows.Controls.GroupBox)(target)); return; case 18: this.CheckBoxByttepalle_active = ((System.Windows.Controls.CheckBox)(target)); return; case 19: this.TextBoxByttepalle_palle1_1 = ((System.Windows.Controls.TextBox)(target)); return; case 20: this.TextBoxByttepalle_palle1_4 = ((System.Windows.Controls.TextBox)(target)); return; case 21: this.TextBoxByttepalle_palle1_2 = ((System.Windows.Controls.TextBox)(target)); return; case 22: this.GroupBoxGodslinjer = ((System.Windows.Controls.GroupBox)(target)); return; case 23: this.DataGridGodslinjer = ((System.Windows.Controls.DataGrid)(target)); return; case 24: this.ComboBoxGodslinjer_TransportType = ((System.Windows.Controls.ComboBox)(target)); #line 83 "..\..\MainFragtBrev.xaml" this.ComboBoxGodslinjer_TransportType.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.GodsDataGridComboBoxTransport_SelectNext_stat_1); #line default #line hidden return; case 25: this.ComboBoxGodslinjer_Pakketype = ((System.Windows.Controls.ComboBox)(target)); #line 92 "..\..\MainFragtBrev.xaml" this.ComboBoxGodslinjer_Pakketype.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.GodsDataGridComboBoxTransport_SelectNext_stat_2); #line default #line hidden return; case 26: this.ComboBoxGodslinjer_Biltype = ((System.Windows.Controls.ComboBox)(target)); #line 93 "..\..\MainFragtBrev.xaml" this.ComboBoxGodslinjer_Biltype.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.GodsDataGridComboBoxTransport_SelectNext_stat_3); #line default #line hidden return; case 27: this.GroupBoxEvtComment = ((System.Windows.Controls.GroupBox)(target)); return; case 28: this.RichTextBoxEktra_Comment = ((System.Windows.Controls.RichTextBox)(target)); return; case 29: this.CloseFragtbrevBox = ((System.Windows.Controls.GroupBox)(target)); return; case 30: this.DatePickerGenerelt_Dato = ((System.Windows.Controls.DatePicker)(target)); return; case 31: this.DatePickerGenerelt_Tid = ((Xceed.Wpf.Toolkit.TimePicker)(target)); return; case 32: this.TextBoxGenerelt_Rabat = ((System.Windows.Controls.TextBox)(target)); return; case 33: this.LabelTransport_kilometer = ((System.Windows.Controls.Label)(target)); return; case 34: this.TextBoxTransport_kilometer = ((System.Windows.Controls.TextBox)(target)); return; case 35: this.GroupBoxTidforbrug = ((System.Windows.Controls.GroupBox)(target)); return; case 36: this.TextBoxTidsforbrug_Load = ((System.Windows.Controls.TextBox)(target)); return; case 37: this.TextBoxTidsforbrug_Unload = ((System.Windows.Controls.TextBox)(target)); return; case 38: this.TextBoxTidsforbrug_Vente = ((System.Windows.Controls.TextBox)(target)); return; case 39: this.TextBoxTidsforbrug_Helper = ((System.Windows.Controls.TextBox)(target)); return; case 40: this.buttonAndenB = ((System.Windows.Controls.Button)(target)); #line 155 "..\..\MainFragtBrev.xaml" this.buttonAndenB.Click += new System.Windows.RoutedEventHandler(this.buttonAndenB_Click); #line default #line hidden return; case 41: this.GroupBoxAndenB = ((System.Windows.Controls.GroupBox)(target)); return; case 42: this.TextBoxAndenB_customId = ((System.Windows.Controls.TextBox)(target)); #line 162 "..\..\MainFragtBrev.xaml" this.TextBoxAndenB_customId.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBoxInformationFirmalist_TextChanged); #line default #line hidden #line 162 "..\..\MainFragtBrev.xaml" this.TextBoxAndenB_customId.KeyUp += new System.Windows.Input.KeyEventHandler(this.TextBoxInformationFirmalist_KeyUp); #line default #line hidden return; case 43: this.TextBoxAndenB_firma = ((System.Windows.Controls.TextBox)(target)); #line 163 "..\..\MainFragtBrev.xaml" this.TextBoxAndenB_firma.KeyUp += new System.Windows.Input.KeyEventHandler(this.TextBoxInformationFirmalist_KeyUp); #line default #line hidden #line 163 "..\..\MainFragtBrev.xaml" this.TextBoxAndenB_firma.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBoxInformationFirmalist_TextChanged); #line default #line hidden return; case 44: this.TextBoxAndenB_adresse = ((System.Windows.Controls.TextBox)(target)); return; case 45: this.TextBoxAndenB_post = ((System.Windows.Controls.TextBox)(target)); #line 165 "..\..\MainFragtBrev.xaml" this.TextBoxAndenB_post.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBoxInformationPost_TextChanged); #line default #line hidden return; case 46: this.CheckBoxAndenB_pay = ((System.Windows.Controls.CheckBox)(target)); #line 166 "..\..\MainFragtBrev.xaml" this.CheckBoxAndenB_pay.Checked += new System.Windows.RoutedEventHandler(this.CheckboxInformation_Checked); #line default #line hidden return; case 47: this.LabelAndenB_bynavn = ((System.Windows.Controls.Label)(target)); return; case 48: this.TextBoxAndenB_pKont = ((System.Windows.Controls.TextBox)(target)); return; case 49: this.ListBoxAndenB_firmalist = ((System.Windows.Controls.ListBox)(target)); #line 172 "..\..\MainFragtBrev.xaml" this.ListBoxAndenB_firmalist.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.TextBoxInformationFirmalist_MouseLeftButtonUp); #line default #line hidden return; case 50: this.GroupBoxAfsender = ((System.Windows.Controls.GroupBox)(target)); return; case 51: this.TextBoxAfsend_customId = ((System.Windows.Controls.TextBox)(target)); #line 181 "..\..\MainFragtBrev.xaml" this.TextBoxAfsend_customId.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBoxInformationFirmalist_TextChanged); #line default #line hidden #line 181 "..\..\MainFragtBrev.xaml" this.TextBoxAfsend_customId.KeyUp += new System.Windows.Input.KeyEventHandler(this.TextBoxInformationFirmalist_KeyUp); #line default #line hidden return; case 52: this.TextBoxAfsend_firma = ((System.Windows.Controls.TextBox)(target)); #line 182 "..\..\MainFragtBrev.xaml" this.TextBoxAfsend_firma.KeyUp += new System.Windows.Input.KeyEventHandler(this.TextBoxInformationFirmalist_KeyUp); #line default #line hidden #line 182 "..\..\MainFragtBrev.xaml" this.TextBoxAfsend_firma.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBoxInformationFirmalist_TextChanged); #line default #line hidden return; case 53: this.TextBoxAfsend_adresse = ((System.Windows.Controls.TextBox)(target)); return; case 54: this.TextBoxAfsend_post = ((System.Windows.Controls.TextBox)(target)); #line 184 "..\..\MainFragtBrev.xaml" this.TextBoxAfsend_post.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBoxInformationPost_TextChanged); #line default #line hidden return; case 55: this.CheckBoxAfsend_pay = ((System.Windows.Controls.CheckBox)(target)); #line 185 "..\..\MainFragtBrev.xaml" this.CheckBoxAfsend_pay.Checked += new System.Windows.RoutedEventHandler(this.CheckboxInformation_Checked); #line default #line hidden return; case 56: this.LabelAfsend_bynavn = ((System.Windows.Controls.Label)(target)); return; case 57: this.TextBoxAfsend_pKont = ((System.Windows.Controls.TextBox)(target)); return; case 58: this.ListBoxAfsend_firmalist = ((System.Windows.Controls.ListBox)(target)); #line 191 "..\..\MainFragtBrev.xaml" this.ListBoxAfsend_firmalist.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.TextBoxInformationFirmalist_MouseLeftButtonUp); #line default #line hidden return; case 59: this.GroupBoxModtager = ((System.Windows.Controls.GroupBox)(target)); return; case 60: this.TextBoxModtag_customId = ((System.Windows.Controls.TextBox)(target)); #line 200 "..\..\MainFragtBrev.xaml" this.TextBoxModtag_customId.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBoxInformationFirmalist_TextChanged); #line default #line hidden #line 200 "..\..\MainFragtBrev.xaml" this.TextBoxModtag_customId.KeyUp += new System.Windows.Input.KeyEventHandler(this.TextBoxInformationFirmalist_KeyUp); #line default #line hidden return; case 61: this.TextBoxModtag_firma = ((System.Windows.Controls.TextBox)(target)); #line 201 "..\..\MainFragtBrev.xaml" this.TextBoxModtag_firma.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBoxInformationFirmalist_TextChanged); #line default #line hidden #line 201 "..\..\MainFragtBrev.xaml" this.TextBoxModtag_firma.KeyUp += new System.Windows.Input.KeyEventHandler(this.TextBoxInformationFirmalist_KeyUp); #line default #line hidden return; case 62: this.TextBoxModtag_adresse = ((System.Windows.Controls.TextBox)(target)); return; case 63: this.TextBoxModtag_post = ((System.Windows.Controls.TextBox)(target)); #line 203 "..\..\MainFragtBrev.xaml" this.TextBoxModtag_post.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBoxInformationPost_TextChanged); #line default #line hidden return; case 64: this.CheckBoxModtag_pay = ((System.Windows.Controls.CheckBox)(target)); #line 204 "..\..\MainFragtBrev.xaml" this.CheckBoxModtag_pay.Checked += new System.Windows.RoutedEventHandler(this.CheckboxInformation_Checked); #line default #line hidden return; case 65: this.LabelModtag_bynavn = ((System.Windows.Controls.Label)(target)); return; case 66: this.TextBoxModtag_pKont = ((System.Windows.Controls.TextBox)(target)); return; case 67: this.ListBoxModtag_firmalist = ((System.Windows.Controls.ListBox)(target)); #line 209 "..\..\MainFragtBrev.xaml" this.ListBoxModtag_firmalist.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.TextBoxInformationFirmalist_MouseLeftButtonUp); #line default #line hidden return; case 68: this.LabelVersion_version = ((System.Windows.Controls.Label)(target)); return; case 69: this.ToolsbarButton_Filer = ((System.Windows.Controls.Button)(target)); #line 224 "..\..\MainFragtBrev.xaml" this.ToolsbarButton_Filer.Click += new System.Windows.RoutedEventHandler(this.ToolsbarButton_Filer_Click); #line default #line hidden #line 224 "..\..\MainFragtBrev.xaml" this.ToolsbarButton_Filer.MouseLeave += new System.Windows.Input.MouseEventHandler(this.ToolsbarMenu_Filer_MouseLeave); #line default #line hidden return; case 70: this.toolbarButton_save = ((System.Windows.Controls.Button)(target)); #line 226 "..\..\MainFragtBrev.xaml" this.toolbarButton_save.PreviewMouseUp += new System.Windows.Input.MouseButtonEventHandler(this.Button_Click_SaveToXML); #line default #line hidden return; case 71: this.toolbarButton_saveImage = ((System.Windows.Controls.Image)(target)); return; case 72: this.toolbarButton_PDF = ((System.Windows.Controls.Button)(target)); #line 229 "..\..\MainFragtBrev.xaml" this.toolbarButton_PDF.PreviewMouseUp += new System.Windows.Input.MouseButtonEventHandler(this.Button_Click_SaveToPdf); #line default #line hidden return; case 73: this.toolbarButton_new = ((System.Windows.Controls.Button)(target)); #line 232 "..\..\MainFragtBrev.xaml" this.toolbarButton_new.PreviewMouseUp += new System.Windows.Input.MouseButtonEventHandler(this.Button_Click_ResetAll); #line default #line hidden return; case 74: this.ToolsbarMenu_Filer = ((System.Windows.Controls.ListBox)(target)); #line 236 "..\..\MainFragtBrev.xaml" this.ToolsbarMenu_Filer.MouseLeave += new System.Windows.Input.MouseEventHandler(this.ToolsbarMenu_Filer_MouseLeave); #line default #line hidden return; case 75: #line 238 "..\..\MainFragtBrev.xaml" ((System.Windows.Controls.ListBoxItem)(target)).PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Button_Click_NewFaktura); #line default #line hidden return; case 76: #line 239 "..\..\MainFragtBrev.xaml" ((System.Windows.Controls.ListBoxItem)(target)).PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Button_Click_ResetAll); #line default #line hidden return; case 77: #line 241 "..\..\MainFragtBrev.xaml" ((System.Windows.Controls.ListBoxItem)(target)).PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Button_Click_OpenFaktura); #line default #line hidden return; case 78: #line 242 "..\..\MainFragtBrev.xaml" ((System.Windows.Controls.ListBoxItem)(target)).PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Button_Click_OpenFragt); #line default #line hidden return; case 79: this.toolbarButtonListSave = ((System.Windows.Controls.ListBoxItem)(target)); #line 244 "..\..\MainFragtBrev.xaml" this.toolbarButtonListSave.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Button_Click_SaveToXML); #line default #line hidden return; case 80: this.toolbarList_PDF = ((System.Windows.Controls.ListBoxItem)(target)); #line 245 "..\..\MainFragtBrev.xaml" this.toolbarList_PDF.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Button_Click_SaveToPdf); #line default #line hidden return; case 81: this.ButtonAdmin_Startmenu = ((System.Windows.Controls.Button)(target)); #line 250 "..\..\MainFragtBrev.xaml" this.ButtonAdmin_Startmenu.Click += new System.Windows.RoutedEventHandler(this.ButtonAdmin_Startmenu_Click); #line default #line hidden return; case 82: this.ButtonTool_CloseFragtbrev = ((System.Windows.Controls.Button)(target)); #line 251 "..\..\MainFragtBrev.xaml" this.ButtonTool_CloseFragtbrev.Click += new System.Windows.RoutedEventHandler(this.ButtonTool_CloseFragtbrev_Click); #line default #line hidden return; case 83: this.ButtonTool_CloseFragtbrevComment = ((System.Windows.Controls.Button)(target)); #line 252 "..\..\MainFragtBrev.xaml" this.ButtonTool_CloseFragtbrevComment.Click += new System.Windows.RoutedEventHandler(this.Button_Click_closeFrabrevText); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 8 "..\..\Staff.xaml" ((Service_Center.Staff)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden return; case 2: this.lbl_Staff = ((System.Windows.Controls.Label)(target)); return; case 3: this.dgStaff = ((System.Windows.Controls.DataGrid)(target)); #line 45 "..\..\Staff.xaml" this.dgStaff.AutoGeneratingColumn += new System.EventHandler <System.Windows.Controls.DataGridAutoGeneratingColumnEventArgs>(this.dgStaff_AutoGeneratingColumn); #line default #line hidden return; case 4: this.lbl_Surname_of_Staff = ((System.Windows.Controls.Label)(target)); return; case 5: this.tb_Surname_of_Staff = ((System.Windows.Controls.TextBox)(target)); #line 48 "..\..\Staff.xaml" this.tb_Surname_of_Staff.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.tb_Surname_of_Staff_PreviewTextInput); #line default #line hidden return; case 6: this.lbl_Name_of_Staff = ((System.Windows.Controls.Label)(target)); return; case 7: this.tb_Name_of_Staff = ((System.Windows.Controls.TextBox)(target)); #line 51 "..\..\Staff.xaml" this.tb_Name_of_Staff.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.tb_Name_of_Staff_PreviewTextInput); #line default #line hidden return; case 8: this.lbl_Middle_Name_of_Staff = ((System.Windows.Controls.Label)(target)); return; case 9: this.tb_Middle_Name_of_Staff = ((System.Windows.Controls.TextBox)(target)); #line 54 "..\..\Staff.xaml" this.tb_Middle_Name_of_Staff.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.tb_Middle_Name_of_Staff_PreviewTextInput); #line default #line hidden return; case 10: this.lbl_Date_of_Birth_Staff = ((System.Windows.Controls.Label)(target)); return; case 11: this.dp_Date_of_Birth_Staff = ((System.Windows.Controls.DatePicker)(target)); #line 57 "..\..\Staff.xaml" this.dp_Date_of_Birth_Staff.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.dp_Date_of_Birth_Staff_PreviewTextInput); #line default #line hidden return; case 12: this.lbl_Sires_Document_Staff = ((System.Windows.Controls.Label)(target)); return; case 13: this.tb_Sires_Document_Staff = ((System.Windows.Controls.TextBox)(target)); #line 60 "..\..\Staff.xaml" this.tb_Sires_Document_Staff.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.tb_Sires_Document_Staff_PreviewTextInput); #line default #line hidden return; case 14: this.lbl_Number_Document_Staff = ((System.Windows.Controls.Label)(target)); return; case 15: this.tb_Number_Document_Staff = ((System.Windows.Controls.TextBox)(target)); #line 63 "..\..\Staff.xaml" this.tb_Number_Document_Staff.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.tb_Number_Document_Staff_PreviewTextInput); #line default #line hidden return; case 16: this.lbl_LoginS = ((System.Windows.Controls.Label)(target)); return; case 17: this.tb_LoginS = ((System.Windows.Controls.TextBox)(target)); #line 66 "..\..\Staff.xaml" this.tb_LoginS.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.tb_LoginS_PreviewTextInput); #line default #line hidden return; case 18: this.lbl_PasswordS = ((System.Windows.Controls.Label)(target)); return; case 19: this.tb_PasswordS = ((System.Windows.Controls.TextBox)(target)); #line 69 "..\..\Staff.xaml" this.tb_PasswordS.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.tb_PasswordS_PreviewTextInput); #line default #line hidden return; case 20: this.lbl_Name_of_Position = ((System.Windows.Controls.Label)(target)); return; case 21: this.cbName_of_Position = ((System.Windows.Controls.ComboBox)(target)); return; case 22: this.lbl_Name_of_Role = ((System.Windows.Controls.Label)(target)); return; case 23: this.cbName_of_Role = ((System.Windows.Controls.ComboBox)(target)); return; case 24: this.tb_Search = ((System.Windows.Controls.TextBox)(target)); return; case 25: this.Search_1 = ((System.Windows.Controls.Label)(target)); return; case 26: this.bt_Insert_Staff = ((System.Windows.Controls.Button)(target)); #line 80 "..\..\Staff.xaml" this.bt_Insert_Staff.Click += new System.Windows.RoutedEventHandler(this.bt_Insert_Client_Click); #line default #line hidden return; case 27: this.bt_Update_Staff = ((System.Windows.Controls.Button)(target)); #line 81 "..\..\Staff.xaml" this.bt_Update_Staff.Click += new System.Windows.RoutedEventHandler(this.bt_Update_Client_Click); #line default #line hidden return; case 28: this.bt_Delete_Staff = ((System.Windows.Controls.Button)(target)); #line 82 "..\..\Staff.xaml" this.bt_Delete_Staff.Click += new System.Windows.RoutedEventHandler(this.bt_Delete_Client_Click); #line default #line hidden return; case 29: this.bt_Search = ((System.Windows.Controls.Button)(target)); #line 83 "..\..\Staff.xaml" this.bt_Search.Click += new System.Windows.RoutedEventHandler(this.bt_Search_Click); #line default #line hidden return; case 30: this.bt_Cancel = ((System.Windows.Controls.Button)(target)); #line 84 "..\..\Staff.xaml" this.bt_Cancel.Click += new System.Windows.RoutedEventHandler(this.bt_Cancel_Click); #line default #line hidden return; case 31: this.bt_Back = ((System.Windows.Controls.Button)(target)); #line 86 "..\..\Staff.xaml" this.bt_Back.Click += new System.Windows.RoutedEventHandler(this.Bt_Back_Click); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 16 "..\..\MainWindow.xaml" ((TaskManagerApplication.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.WindowClosing); #line default #line hidden return; case 2: this.datePicker = ((System.Windows.Controls.DatePicker)(target)); return; case 3: this.timePicker = ((MaterialDesignThemes.Wpf.TimePicker)(target)); return; case 4: this.periodicityMenuItem = ((System.Windows.Controls.MenuItem)(target)); return; case 5: this.oneTimeMenuItem = ((System.Windows.Controls.MenuItem)(target)); #line 38 "..\..\MainWindow.xaml" this.oneTimeMenuItem.Click += new System.Windows.RoutedEventHandler(this.OneTimeMenuItemClick); #line default #line hidden return; case 6: this.onceADayMenuItem = ((System.Windows.Controls.MenuItem)(target)); #line 40 "..\..\MainWindow.xaml" this.onceADayMenuItem.Click += new System.Windows.RoutedEventHandler(this.OnceADayMenuItemClick); #line default #line hidden return; case 7: this.onceAWeekMenuItem = ((System.Windows.Controls.MenuItem)(target)); #line 41 "..\..\MainWindow.xaml" this.onceAWeekMenuItem.Click += new System.Windows.RoutedEventHandler(this.OnceAWeekMenuItemClick); #line default #line hidden return; case 8: this.onceAMounthMenuItem = ((System.Windows.Controls.MenuItem)(target)); #line 42 "..\..\MainWindow.xaml" this.onceAMounthMenuItem.Click += new System.Windows.RoutedEventHandler(this.OnceAMounthMenuItemClick); #line default #line hidden return; case 9: this.onceAYearMenuItem = ((System.Windows.Controls.MenuItem)(target)); #line 43 "..\..\MainWindow.xaml" this.onceAYearMenuItem.Click += new System.Windows.RoutedEventHandler(this.OnceAYearMenuItemClick); #line default #line hidden return; case 10: this.selectTypeMenuItem = ((System.Windows.Controls.MenuItem)(target)); return; case 11: this.emailMenuItem = ((System.Windows.Controls.MenuItem)(target)); #line 50 "..\..\MainWindow.xaml" this.emailMenuItem.Click += new System.Windows.RoutedEventHandler(this.EmailMenuItemClick); #line default #line hidden return; case 12: this.downloadMenuItem = ((System.Windows.Controls.MenuItem)(target)); #line 51 "..\..\MainWindow.xaml" this.downloadMenuItem.Click += new System.Windows.RoutedEventHandler(this.DownloadMenuItemClick); #line default #line hidden return; case 13: this.moveDirectoryMenuItem = ((System.Windows.Controls.MenuItem)(target)); #line 52 "..\..\MainWindow.xaml" this.moveDirectoryMenuItem.Click += new System.Windows.RoutedEventHandler(this.MoveDirectoryMenuItemClick); #line default #line hidden return; case 14: this.frame = ((System.Windows.Controls.Frame)(target)); return; case 15: this.nextButton = ((System.Windows.Controls.Button)(target)); #line 60 "..\..\MainWindow.xaml" this.nextButton.Click += new System.Windows.RoutedEventHandler(this.NextButtonClick); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 4 "..\..\..\Windows\ConsultarAtos.xaml" ((Cs_Notas.Windows.ConsultarAtos)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden #line 4 "..\..\..\Windows\ConsultarAtos.xaml" ((Cs_Notas.Windows.ConsultarAtos)(target)).PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.Window_PreviewKeyDown); #line default #line hidden return; case 2: this.cmbTipoConsulta = ((System.Windows.Controls.ComboBox)(target)); #line 14 "..\..\..\Windows\ConsultarAtos.xaml" this.cmbTipoConsulta.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbTipoConsulta_SelectionChanged); #line default #line hidden #line 14 "..\..\..\Windows\ConsultarAtos.xaml" this.cmbTipoConsulta.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.cmbTipoConsulta_PreviewKeyDown); #line default #line hidden return; case 3: this.dpInicio = ((System.Windows.Controls.DatePicker)(target)); return; case 4: this.dpFim = ((System.Windows.Controls.DatePicker)(target)); return; case 5: this.lblInicio = ((System.Windows.Controls.Label)(target)); return; case 6: this.lblFim = ((System.Windows.Controls.Label)(target)); return; case 7: this.btnConsultarAto = ((System.Windows.Controls.Button)(target)); #line 26 "..\..\..\Windows\ConsultarAtos.xaml" this.btnConsultarAto.Click += new System.Windows.RoutedEventHandler(this.btnConsultarAto_Click); #line default #line hidden return; case 8: this.txtConsultar = ((System.Windows.Controls.TextBox)(target)); #line 49 "..\..\..\Windows\ConsultarAtos.xaml" this.txtConsultar.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.txtConsultar_PreviewKeyDown); #line default #line hidden return; case 9: this.dataGridConsultarAtos = ((System.Windows.Controls.DataGrid)(target)); #line 54 "..\..\..\Windows\ConsultarAtos.xaml" this.dataGridConsultarAtos.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.dataGridConsultarAtos_PreviewKeyDown); #line default #line hidden #line 54 "..\..\..\Windows\ConsultarAtos.xaml" this.dataGridConsultarAtos.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.dataGridConsultarAtos_SelectionChanged); #line default #line hidden return; case 11: this.menuAtos = ((System.Windows.Controls.ContextMenu)(target)); return; case 12: this.MenuItemRemoverSelo = ((System.Windows.Controls.MenuItem)(target)); #line 71 "..\..\..\Windows\ConsultarAtos.xaml" this.MenuItemRemoverSelo.Click += new System.Windows.RoutedEventHandler(this.MenuItemRemoverSelo_Click); #line default #line hidden return; case 13: this.dataGridParticipantes = ((System.Windows.Controls.DataGrid)(target)); #line 97 "..\..\..\Windows\ConsultarAtos.xaml" this.dataGridParticipantes.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.dataGridParticipantes_MouseDoubleClick); #line default #line hidden return; case 15: this.btnMinuta = ((System.Windows.Controls.Button)(target)); #line 125 "..\..\..\Windows\ConsultarAtos.xaml" this.btnMinuta.Click += new System.Windows.RoutedEventHandler(this.btnMinuta_Click_1); #line default #line hidden return; case 16: this.btnComplemento = ((System.Windows.Controls.Button)(target)); #line 149 "..\..\..\Windows\ConsultarAtos.xaml" this.btnComplemento.Click += new System.Windows.RoutedEventHandler(this.btnComplemento_Click); #line default #line hidden return; case 17: this.btnSelarAto = ((System.Windows.Controls.Button)(target)); #line 173 "..\..\..\Windows\ConsultarAtos.xaml" this.btnSelarAto.Click += new System.Windows.RoutedEventHandler(this.btnSelarAto_Click); #line default #line hidden return; case 18: this.btnExcluirAto = ((System.Windows.Controls.Button)(target)); #line 199 "..\..\..\Windows\ConsultarAtos.xaml" this.btnExcluirAto.Click += new System.Windows.RoutedEventHandler(this.btnExcluirAto_Click); #line default #line hidden return; case 19: this.btnAlterarAto = ((System.Windows.Controls.Button)(target)); #line 222 "..\..\..\Windows\ConsultarAtos.xaml" this.btnAlterarAto.Click += new System.Windows.RoutedEventHandler(this.btnAlterarAto_Click); #line default #line hidden return; case 20: this.lblFim_Copy = ((System.Windows.Controls.Label)(target)); return; case 21: this.lblFim_Copy1 = ((System.Windows.Controls.Label)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.GRPFList = ((System.Windows.Controls.DataGrid)(target)); return; case 2: this.Dgc0 = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 3: this.Dgc3 = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 4: this.Dgc6 = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 5: this.Dgc9 = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 6: this.Dgc12 = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 7: this.Dgc15 = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 8: this.Dgc18 = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 9: this.Dgc21 = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 10: this.sDate = ((System.Windows.Controls.DatePicker)(target)); #line 104 "..\..\..\..\页\数值预报检验.xaml" this.sDate.SelectedDateChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.sDate_SelectedDateChanged); #line default #line hidden return; case 11: this.eDate = ((System.Windows.Controls.DatePicker)(target)); return; case 12: this.labelStartdate = ((System.Windows.Controls.Label)(target)); return; case 13: this.labelEnddate = ((System.Windows.Controls.Label)(target)); return; case 14: this.BTLabel = ((System.Windows.Controls.Label)(target)); return; case 15: this.CXButton = ((System.Windows.Controls.Button)(target)); #line 109 "..\..\..\..\页\数值预报检验.xaml" this.CXButton.Click += new System.Windows.RoutedEventHandler(this.CXButton_Click); #line default #line hidden return; case 16: this.DCButton = ((System.Windows.Controls.Button)(target)); #line 111 "..\..\..\..\页\数值预报检验.xaml" this.DCButton.Click += new System.Windows.RoutedEventHandler(this.DCButton_Click); #line default #line hidden return; case 17: this.SCSelect = ((System.Windows.Controls.ComboBox)(target)); #line 112 "..\..\..\..\页\数值预报检验.xaml" this.SCSelect.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.SCSelect_SelectionChanged); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.btnSignOut = ((System.Windows.Controls.Button)(target)); #line 10 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnSignOut.Click += new System.Windows.RoutedEventHandler(this.btnSignOut_Click); #line default #line hidden return; case 2: this.RequestRide = ((System.Windows.Controls.TabItem)(target)); return; case 3: this.dataRideForRequest = ((System.Windows.Controls.DataGrid)(target)); #line 24 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.dataRideForRequest.Loaded += new System.Windows.RoutedEventHandler(this.dataRideForRequest_Loaded); #line default #line hidden return; case 4: this.tbRideId = ((System.Windows.Controls.TextBox)(target)); return; case 5: this.btnSearchRide = ((System.Windows.Controls.Button)(target)); #line 30 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnSearchRide.Click += new System.Windows.RoutedEventHandler(this.btnSearchRide_Click); #line default #line hidden return; case 6: this.btnSendConstruction = ((System.Windows.Controls.Button)(target)); #line 31 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnSendConstruction.Click += new System.Windows.RoutedEventHandler(this.btnSendConstruction_Click); #line default #line hidden return; case 7: this.tbNameRide = ((System.Windows.Controls.TextBox)(target)); return; case 8: this.tbDescRide = ((System.Windows.Controls.TextBox)(target)); return; case 9: this.tbHowWorkRide = ((System.Windows.Controls.TextBox)(target)); return; case 10: this.tbSafetyRide = ((System.Windows.Controls.TextBox)(target)); return; case 11: this.cbKindRide = ((System.Windows.Controls.ComboBox)(target)); return; case 12: this.btnRequestAddRide = ((System.Windows.Controls.Button)(target)); #line 49 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnRequestAddRide.Click += new System.Windows.RoutedEventHandler(this.btnRequestAddRide_Click); #line default #line hidden return; case 13: this.btnRequestUpdateRide = ((System.Windows.Controls.Button)(target)); #line 50 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnRequestUpdateRide.Click += new System.Windows.RoutedEventHandler(this.btnRequestUpdateRide_Click); #line default #line hidden return; case 14: this.btnRequestRemoveRide = ((System.Windows.Controls.Button)(target)); #line 51 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnRequestRemoveRide.Click += new System.Windows.RoutedEventHandler(this.btnRequestRemoveRide_Click); #line default #line hidden return; case 15: this.RequestAtt = ((System.Windows.Controls.TabItem)(target)); return; case 16: this.dataAttractionForRequest = ((System.Windows.Controls.DataGrid)(target)); #line 67 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.dataAttractionForRequest.Loaded += new System.Windows.RoutedEventHandler(this.dataAttractionForRequest_Loaded); #line default #line hidden return; case 17: this.tbAttId = ((System.Windows.Controls.TextBox)(target)); return; case 18: this.btnSearchAtt = ((System.Windows.Controls.Button)(target)); #line 73 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnSearchAtt.Click += new System.Windows.RoutedEventHandler(this.btnSearchAtt_Click); #line default #line hidden return; case 19: this.tbNameAtt = ((System.Windows.Controls.TextBox)(target)); return; case 20: this.tbDescAtt = ((System.Windows.Controls.TextBox)(target)); return; case 21: this.tbHowWorkRAtt = ((System.Windows.Controls.TextBox)(target)); return; case 22: this.tbWhoPart = ((System.Windows.Controls.TextBox)(target)); return; case 23: this.dpDateLaunch = ((System.Windows.Controls.DatePicker)(target)); return; case 24: this.btnRequestAddAtt = ((System.Windows.Controls.Button)(target)); #line 85 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnRequestAddAtt.Click += new System.Windows.RoutedEventHandler(this.btnRequestAddAtt_Click); #line default #line hidden return; case 25: this.btnRequestUpdateAtt = ((System.Windows.Controls.Button)(target)); #line 86 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnRequestUpdateAtt.Click += new System.Windows.RoutedEventHandler(this.btnRequestUpdateAtt_Click); #line default #line hidden return; case 26: this.btnRequestRemoveAtt = ((System.Windows.Controls.Button)(target)); #line 87 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnRequestRemoveAtt.Click += new System.Windows.RoutedEventHandler(this.btnRequestRemoveAtt_Click); #line default #line hidden return; case 27: this.DataRequestRide = ((System.Windows.Controls.TabItem)(target)); return; case 28: this.dataRequestRide = ((System.Windows.Controls.DataGrid)(target)); #line 103 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.dataRequestRide.Loaded += new System.Windows.RoutedEventHandler(this.dataRequestRide_Loaded); #line default #line hidden return; case 29: this.btnAddRideBase = ((System.Windows.Controls.Button)(target)); #line 104 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnAddRideBase.Click += new System.Windows.RoutedEventHandler(this.btnAddRideBase_Click); #line default #line hidden return; case 30: this.btnUpdRideBase = ((System.Windows.Controls.Button)(target)); #line 105 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnUpdRideBase.Click += new System.Windows.RoutedEventHandler(this.btnUpdRideBase_Click); #line default #line hidden return; case 31: this.btnDelRideBase = ((System.Windows.Controls.Button)(target)); #line 106 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnDelRideBase.Click += new System.Windows.RoutedEventHandler(this.btnDelRideBase_Click); #line default #line hidden return; case 32: this.tbReqRideId = ((System.Windows.Controls.TextBox)(target)); return; case 33: this.btnSearchReRide = ((System.Windows.Controls.Button)(target)); #line 112 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnSearchReRide.Click += new System.Windows.RoutedEventHandler(this.btnSearchReRide_Click); #line default #line hidden return; case 34: this.tbNameReRide = ((System.Windows.Controls.TextBox)(target)); return; case 35: this.tbDescReRide = ((System.Windows.Controls.TextBox)(target)); return; case 36: this.tbHowWorkReRide = ((System.Windows.Controls.TextBox)(target)); return; case 37: this.tbSafetyReRide = ((System.Windows.Controls.TextBox)(target)); return; case 38: this.cbKindReRide = ((System.Windows.Controls.ComboBox)(target)); return; case 39: this.btnUpdateRequestRideData = ((System.Windows.Controls.Button)(target)); #line 129 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnUpdateRequestRideData.Click += new System.Windows.RoutedEventHandler(this.btnUpdateRequestRideData_Click); #line default #line hidden return; case 40: this.btnCancelRequestRideData = ((System.Windows.Controls.Button)(target)); #line 130 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnCancelRequestRideData.Click += new System.Windows.RoutedEventHandler(this.btnCancelRequestRideData_Click); #line default #line hidden return; case 41: this.DataRequestAtt = ((System.Windows.Controls.TabItem)(target)); return; case 42: this.dataRequestAtt = ((System.Windows.Controls.DataGrid)(target)); #line 146 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.dataRequestAtt.Loaded += new System.Windows.RoutedEventHandler(this.dataRequestAtt_Loaded); #line default #line hidden return; case 43: this.btnAddAttBase = ((System.Windows.Controls.Button)(target)); #line 147 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnAddAttBase.Click += new System.Windows.RoutedEventHandler(this.btnAddAttBase_Click); #line default #line hidden return; case 44: this.btnUpdAttBase = ((System.Windows.Controls.Button)(target)); #line 148 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnUpdAttBase.Click += new System.Windows.RoutedEventHandler(this.btnUpdAttBase_Click); #line default #line hidden return; case 45: this.btnDelAttBase = ((System.Windows.Controls.Button)(target)); #line 149 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnDelAttBase.Click += new System.Windows.RoutedEventHandler(this.btnDelAttBase_Click); #line default #line hidden return; case 46: this.tbReqAttId = ((System.Windows.Controls.TextBox)(target)); return; case 47: this.btnSearchReAtt = ((System.Windows.Controls.Button)(target)); #line 155 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnSearchReAtt.Click += new System.Windows.RoutedEventHandler(this.btnSearchReAtt_Click); #line default #line hidden return; case 48: this.tbNameReAtt = ((System.Windows.Controls.TextBox)(target)); return; case 49: this.tbDescReAtt = ((System.Windows.Controls.TextBox)(target)); return; case 50: this.tbHowWorkReAtt = ((System.Windows.Controls.TextBox)(target)); return; case 51: this.tbReWhoPart = ((System.Windows.Controls.TextBox)(target)); return; case 52: this.dpReDateLaunch = ((System.Windows.Controls.DatePicker)(target)); return; case 53: this.btnUpdateRequestAttData = ((System.Windows.Controls.Button)(target)); #line 167 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnUpdateRequestAttData.Click += new System.Windows.RoutedEventHandler(this.btnUpdateRequestAttData_Click); #line default #line hidden return; case 54: this.btnCancelRequestAttData = ((System.Windows.Controls.Button)(target)); #line 168 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnCancelRequestAttData.Click += new System.Windows.RoutedEventHandler(this.btnCancelRequestAttData_Click); #line default #line hidden return; case 55: this.requestPurchase = ((System.Windows.Controls.TabItem)(target)); return; case 56: this.dataRequestPurchase = ((System.Windows.Controls.DataGrid)(target)); #line 185 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.dataRequestPurchase.Loaded += new System.Windows.RoutedEventHandler(this.dataRequestPurchase_Loaded); #line default #line hidden return; case 57: this.tbPurId = ((System.Windows.Controls.TextBox)(target)); return; case 58: this.btnPurId = ((System.Windows.Controls.Button)(target)); #line 191 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnPurId.Click += new System.Windows.RoutedEventHandler(this.btnPurId_Click); #line default #line hidden return; case 59: this.tbReqDet = ((System.Windows.Controls.TextBox)(target)); return; case 60: this.dpNeed = ((System.Windows.Controls.DatePicker)(target)); return; case 61: this.tbTimeNeed = ((System.Windows.Controls.TextBox)(target)); return; case 62: this.btnRequestPurchase = ((System.Windows.Controls.Button)(target)); #line 199 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnRequestPurchase.Click += new System.Windows.RoutedEventHandler(this.btnRequestPurchase_Click); #line default #line hidden return; case 63: this.requestFund = ((System.Windows.Controls.TabItem)(target)); return; case 64: this.dataRequestFund = ((System.Windows.Controls.DataGrid)(target)); #line 213 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.dataRequestFund.Loaded += new System.Windows.RoutedEventHandler(this.dataRequestFund_Loaded); #line default #line hidden return; case 65: this.tbFundId = ((System.Windows.Controls.TextBox)(target)); return; case 66: this.btnFundId = ((System.Windows.Controls.Button)(target)); #line 219 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.btnFundId.Click += new System.Windows.RoutedEventHandler(this.btnFundId_Click); #line default #line hidden return; case 67: this.tbFundDet = ((System.Windows.Controls.TextBox)(target)); return; case 68: this.tbFundAmount = ((System.Windows.Controls.TextBox)(target)); return; case 69: this.RequestFund = ((System.Windows.Controls.Button)(target)); #line 225 "..\..\..\View\RideandAttractionCreativeDepartment.xaml" this.RequestFund.Click += new System.Windows.RoutedEventHandler(this.RequestFund_Click); #line default #line hidden return; case 70: this.tbReasonNoAcc = ((System.Windows.Controls.TextBox)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.Department = ((System.Windows.Controls.TextBox)(target)); return; case 2: this.Salary = ((System.Windows.Controls.TextBox)(target)); return; case 3: this.number = ((System.Windows.Controls.TextBox)(target)); return; case 4: this.Name = ((System.Windows.Controls.TextBox)(target)); return; case 5: this.Yes = ((System.Windows.Controls.RadioButton)(target)); return; case 6: this.No = ((System.Windows.Controls.RadioButton)(target)); return; case 7: this.Male = ((System.Windows.Controls.RadioButton)(target)); return; case 8: this.Female = ((System.Windows.Controls.RadioButton)(target)); return; case 9: this.back = ((System.Windows.Controls.Button)(target)); #line 28 "..\..\Add_Employee.xaml" this.back.Click += new System.Windows.RoutedEventHandler(this.back_Click); #line default #line hidden return; case 10: this.ADD = ((System.Windows.Controls.Button)(target)); #line 33 "..\..\Add_Employee.xaml" this.ADD.Click += new System.Windows.RoutedEventHandler(this.ADD_Click); #line default #line hidden return; case 11: this.Yes3 = ((System.Windows.Controls.RadioButton)(target)); return; case 12: this.No3 = ((System.Windows.Controls.RadioButton)(target)); return; case 13: this.label2_Copy = ((System.Windows.Controls.Label)(target)); return; case 14: this.label2_Copy1 = ((System.Windows.Controls.Label)(target)); return; case 15: this.label2_Copy2 = ((System.Windows.Controls.Label)(target)); return; case 16: this.label2_Copy3 = ((System.Windows.Controls.Label)(target)); return; case 17: this.label2_Copy4 = ((System.Windows.Controls.Label)(target)); return; case 18: this.label2_Copy5 = ((System.Windows.Controls.Label)(target)); return; case 19: this.label2_Copy6 = ((System.Windows.Controls.Label)(target)); return; case 20: this.label2_Copy7 = ((System.Windows.Controls.Label)(target)); return; case 21: this.label2_Copy8 = ((System.Windows.Controls.Label)(target)); return; case 22: this.label2_Copy9 = ((System.Windows.Controls.Label)(target)); return; case 23: this.label2_Copy10 = ((System.Windows.Controls.Label)(target)); return; case 24: this.label2_Copy13 = ((System.Windows.Controls.Label)(target)); return; case 25: this.label2_Copy14 = ((System.Windows.Controls.Label)(target)); return; case 26: this.label2_Copy15 = ((System.Windows.Controls.Label)(target)); return; case 27: this.label2_Copy16 = ((System.Windows.Controls.Label)(target)); return; case 28: this.Date = ((System.Windows.Controls.DatePicker)(target)); return; case 29: this.Emplyedate = ((System.Windows.Controls.DatePicker)(target)); return; case 30: this.password = ((System.Windows.Controls.TextBox)(target)); return; case 31: this.label2_Copy11 = ((System.Windows.Controls.Label)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 4 "..\..\..\WpfKH_CBTD_MOI.xaml" ((Presentation.WpfKhCbtdM)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden return; case 2: this.lblMessa = ((System.Windows.Controls.Label)(target)); #line 6 "..\..\..\WpfKH_CBTD_MOI.xaml" this.lblMessa.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.lblMess_OnMouseDown); #line default #line hidden return; case 3: this.btnClose = ((System.Windows.Controls.Button)(target)); #line 30 "..\..\..\WpfKH_CBTD_MOI.xaml" this.btnClose.Click += new System.Windows.RoutedEventHandler(this.btnClose_OnClick); #line default #line hidden return; case 4: this.btnOk = ((System.Windows.Controls.Button)(target)); #line 51 "..\..\..\WpfKH_CBTD_MOI.xaml" this.btnOk.Click += new System.Windows.RoutedEventHandler(this.BtnOk_OnClick); #line default #line hidden return; case 5: this.CboPos = ((System.Windows.Controls.ComboBox)(target)); return; case 6: this.lblPos = ((System.Windows.Controls.Label)(target)); return; case 7: this.DtpDenNgay = ((System.Windows.Controls.DatePicker)(target)); return; case 8: this.lblDenNgay = ((System.Windows.Controls.Label)(target)); return; case 9: this.GroupBox = ((System.Windows.Controls.GroupBox)(target)); return; case 10: this.RadioButton1 = ((System.Windows.Controls.RadioButton)(target)); return; case 11: this.RadioButton2 = ((System.Windows.Controls.RadioButton)(target)); return; case 12: this.RadioButton3 = ((System.Windows.Controls.RadioButton)(target)); return; case 13: this.RadioButton4 = ((System.Windows.Controls.RadioButton)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 4 "..\..\..\..\Windows\Procuracao\IniciarPrimeiraDigitacaoProcuracao.xaml" ((Cs_Notas.Windows.Procuracao.IniciarPrimeiraDigitacaoProcuracao)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden #line 4 "..\..\..\..\Windows\Procuracao\IniciarPrimeiraDigitacaoProcuracao.xaml" ((Cs_Notas.Windows.Procuracao.IniciarPrimeiraDigitacaoProcuracao)(target)).PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.Window_PreviewKeyDown); #line default #line hidden return; case 2: this.lblTabelaAtos = ((System.Windows.Controls.Label)(target)); return; case 3: this.cmbTabelaAtos = ((System.Windows.Controls.ComboBox)(target)); #line 14 "..\..\..\..\Windows\Procuracao\IniciarPrimeiraDigitacaoProcuracao.xaml" this.cmbTabelaAtos.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbTabelaAtos_SelectionChanged); #line default #line hidden return; case 4: this.dtDataAto = ((System.Windows.Controls.DatePicker)(target)); return; case 5: this.txtLivro = ((System.Windows.Controls.TextBox)(target)); return; case 6: this.txtFlsIni = ((System.Windows.Controls.TextBox)(target)); return; case 7: this.txtFlsFim = ((System.Windows.Controls.TextBox)(target)); return; case 8: this.txtAto = ((System.Windows.Controls.TextBox)(target)); return; case 9: this.txtSelo = ((System.Windows.Controls.TextBox)(target)); return; case 10: this.txtAleatorio = ((System.Windows.Controls.TextBox)(target)); return; case 11: this.dataGridAtoConjuntos = ((System.Windows.Controls.DataGrid)(target)); return; case 13: this.btnSalvarSair = ((System.Windows.Controls.Button)(target)); #line 55 "..\..\..\..\Windows\Procuracao\IniciarPrimeiraDigitacaoProcuracao.xaml" this.btnSalvarSair.Click += new System.Windows.RoutedEventHandler(this.btnSalvarSair_Click); #line default #line hidden return; case 14: this.cmbEscreventes = ((System.Windows.Controls.ComboBox)(target)); return; case 15: this.cmbTipoProcuracao = ((System.Windows.Controls.ComboBox)(target)); return; case 16: this.txtOutrosLocal = ((System.Windows.Controls.TextBox)(target)); return; case 17: this.cmbLocalProcuracao = ((System.Windows.Controls.ComboBox)(target)); #line 86 "..\..\..\..\Windows\Procuracao\IniciarPrimeiraDigitacaoProcuracao.xaml" this.cmbLocalProcuracao.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbLocalProcuracao_SelectionChanged); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.ReservationPanel = ((HotelApp.ReservationControl)(target)); #line 9 "..\..\ReservationControl.xaml" this.ReservationPanel.Loaded += new System.Windows.RoutedEventHandler(this.ReservationPanel_Loaded); #line default #line hidden return; case 2: this.btn_addItem = ((System.Windows.Controls.Button)(target)); return; case 3: this.addRoom_grid = ((System.Windows.Controls.Grid)(target)); return; case 4: this.tb_Name = ((System.Windows.Controls.TextBox)(target)); return; case 5: this.tb_NIK = ((System.Windows.Controls.TextBox)(target)); #line 59 "..\..\ReservationControl.xaml" this.tb_NIK.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.labelNIK_PreviewTextInput); #line default #line hidden return; case 6: this.tb_Phone = ((System.Windows.Controls.TextBox)(target)); #line 68 "..\..\ReservationControl.xaml" this.tb_Phone.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.labelPhone_PreviewTextInput); #line default #line hidden return; case 7: this.tb_Email = ((System.Windows.Controls.TextBox)(target)); return; case 8: this.cb_Gender = ((System.Windows.Controls.ComboBox)(target)); return; case 9: this.StartDate = ((System.Windows.Controls.DatePicker)(target)); return; case 10: this.tb_nights = ((System.Windows.Controls.TextBox)(target)); #line 111 "..\..\ReservationControl.xaml" this.tb_nights.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.tb_nights_PreviewTextInput); #line default #line hidden return; case 11: this.cb_roomtype = ((System.Windows.Controls.ComboBox)(target)); return; case 12: this.btn_search = ((System.Windows.Controls.Button)(target)); #line 122 "..\..\ReservationControl.xaml" this.btn_search.Click += new System.Windows.RoutedEventHandler(this.btn_search_Click); #line default #line hidden return; case 13: this.dg_AddRoom = ((System.Windows.Controls.DataGrid)(target)); #line 148 "..\..\ReservationControl.xaml" this.dg_AddRoom.SelectedCellsChanged += new System.Windows.Controls.SelectedCellsChangedEventHandler(this.dg_AddRoom_CurrentCellChanged); #line default #line hidden return; case 14: this.tb_RoomNumber_AddRoom = ((System.Windows.Controls.TextBox)(target)); return; case 15: this.tb_RoomFloors_AddRoom = ((System.Windows.Controls.TextBox)(target)); return; case 16: this.tb_RoomType_AddRoom = ((System.Windows.Controls.TextBox)(target)); return; case 17: this.cb_moreitem1 = ((System.Windows.Controls.ComboBox)(target)); return; case 18: this.cb_moreitem2 = ((System.Windows.Controls.ComboBox)(target)); return; case 19: this.tb_moreitem1 = ((System.Windows.Controls.TextBox)(target)); #line 171 "..\..\ReservationControl.xaml" this.tb_moreitem1.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.tb_moreitem1_PreviewTextInput); #line default #line hidden #line 171 "..\..\ReservationControl.xaml" this.tb_moreitem1.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.tb_moreitem1_TextChanged); #line default #line hidden return; case 20: this.tb_moreitem2 = ((System.Windows.Controls.TextBox)(target)); #line 174 "..\..\ReservationControl.xaml" this.tb_moreitem2.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.tb_moreitem2_PreviewTextInput); #line default #line hidden #line 174 "..\..\ReservationControl.xaml" this.tb_moreitem2.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.tb_moreitem2_TextChanged); #line default #line hidden return; case 21: this.lbl_price = ((System.Windows.Controls.Label)(target)); return; case 22: this.btn_SubmitAddRoom = ((System.Windows.Controls.Button)(target)); #line 195 "..\..\ReservationControl.xaml" this.btn_SubmitAddRoom.Click += new System.Windows.RoutedEventHandler(this.btn_SubmitAddRoom_Click); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.label2 = ((System.Windows.Controls.Label)(target)); return; case 2: this.txbPidNo = ((System.Windows.Controls.TextBox)(target)); #line 21 "..\..\AddTrainee.xaml" this.txbPidNo.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txbPidNo_TextChanged); #line default #line hidden return; case 3: this.lb2 = ((System.Windows.Controls.Label)(target)); return; case 4: this.label3 = ((System.Windows.Controls.Label)(target)); return; case 5: this.txbUserName = ((System.Windows.Controls.TextBox)(target)); return; case 6: this.lb1 = ((System.Windows.Controls.Label)(target)); return; case 7: this.label4 = ((System.Windows.Controls.Label)(target)); return; case 8: this.rdbMan = ((System.Windows.Controls.RadioButton)(target)); return; case 9: this.rdbWoman = ((System.Windows.Controls.RadioButton)(target)); return; case 10: this.lb3 = ((System.Windows.Controls.Label)(target)); return; case 11: this.label8 = ((System.Windows.Controls.Label)(target)); return; case 12: this.txbPhoneNo = ((System.Windows.Controls.TextBox)(target)); return; case 13: this.label10 = ((System.Windows.Controls.Label)(target)); return; case 14: this.btnEnrollFingerprint = ((System.Windows.Controls.Button)(target)); #line 41 "..\..\AddTrainee.xaml" this.btnEnrollFingerprint.Click += new System.Windows.RoutedEventHandler(this.btnEnrollFingerprint_Click); #line default #line hidden return; case 15: this.lblFingerPrint1 = ((System.Windows.Controls.Label)(target)); return; case 16: this.label5 = ((System.Windows.Controls.Label)(target)); return; case 17: this.cmbLicenseTypeCd = ((System.Windows.Controls.ComboBox)(target)); return; case 18: this.lb4 = ((System.Windows.Controls.Label)(target)); return; case 19: this.rdbCommon = ((System.Windows.Controls.RadioButton)(target)); return; case 20: this.rdbVip = ((System.Windows.Controls.RadioButton)(target)); return; case 21: this.groupBoxPhoto = ((System.Windows.Controls.GroupBox)(target)); return; case 22: this.myImage = ((System.Windows.Controls.Image)(target)); return; case 23: this.btnPhotoUser = ((System.Windows.Controls.Button)(target)); #line 58 "..\..\AddTrainee.xaml" this.btnPhotoUser.Click += new System.Windows.RoutedEventHandler(this.btnPhotoUser_Click); #line default #line hidden return; case 24: this.dpBirthDay = ((System.Windows.Controls.DatePicker)(target)); return; case 25: this.dpRegDate = ((System.Windows.Controls.DatePicker)(target)); return; case 26: this.tblSaveSta = ((System.Windows.Controls.TextBlock)(target)); return; case 27: this.label9 = ((System.Windows.Controls.Label)(target)); return; case 28: this.txbAddress = ((System.Windows.Controls.TextBox)(target)); return; case 29: this.label7 = ((System.Windows.Controls.Label)(target)); return; case 30: this.cmbDrivingSchool = ((System.Windows.Controls.ComboBox)(target)); return; case 31: this.btnSave = ((System.Windows.Controls.Button)(target)); #line 85 "..\..\AddTrainee.xaml" this.btnSave.Click += new System.Windows.RoutedEventHandler(this.btnSave_Click); #line default #line hidden return; case 32: this.btnCancel = ((System.Windows.Controls.Button)(target)); #line 87 "..\..\AddTrainee.xaml" this.btnCancel.Click += new System.Windows.RoutedEventHandler(this.btnCancel_Click); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.MainGrid = ((System.Windows.Controls.Grid)(target)); return; case 2: this.Serial_PO_NO = ((System.Windows.Controls.TextBox)(target)); return; case 3: this.PO_NO = ((System.Windows.Controls.TextBox)(target)); #line 41 "..\..\PurchaseOrder.xaml" this.PO_NO.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberValidationTextBox); #line default #line hidden #line 41 "..\..\PurchaseOrder.xaml" this.PO_NO.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.NeglectWhiteSpace); #line default #line hidden return; case 4: this.ShipTo = ((System.Windows.Controls.TextBox)(target)); return; case 5: this.Vendor = ((System.Windows.Controls.TextBox)(target)); return; case 6: this.VendorBtn = ((System.Windows.Controls.Button)(target)); #line 54 "..\..\PurchaseOrder.xaml" this.VendorBtn.Click += new System.Windows.RoutedEventHandler(this.VendorBtn_Click); #line default #line hidden return; case 7: this.Delivery_dt = ((System.Windows.Controls.DatePicker)(target)); return; case 8: this.Delivery_time = ((MaterialDesignThemes.Wpf.TimePicker)(target)); return; case 9: this.commenttxt = ((System.Windows.Controls.TextBox)(target)); return; case 10: this.Status = ((System.Windows.Controls.TextBlock)(target)); return; case 11: this.Statustxt = ((System.Windows.Controls.ComboBox)(target)); return; case 12: this.ItemsDGV = ((System.Windows.Controls.DataGrid)(target)); #line 89 "..\..\PurchaseOrder.xaml" this.ItemsDGV.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.ItemsDGV_MouseLeftButtonUp); #line default #line hidden #line 90 "..\..\PurchaseOrder.xaml" this.ItemsDGV.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberValidationTextBox); #line default #line hidden #line 90 "..\..\PurchaseOrder.xaml" this.ItemsDGV.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.NeglectWhiteSpace); #line default #line hidden #line 90 "..\..\PurchaseOrder.xaml" this.ItemsDGV.CellEditEnding += new System.EventHandler <System.Windows.Controls.DataGridCellEditEndingEventArgs>(this.ItemDgv_CellEditEnding); #line default #line hidden #line 90 "..\..\PurchaseOrder.xaml" this.ItemsDGV.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ItemsDGV_SelectionChanged); #line default #line hidden return; case 13: this.Total_Price_Without_Tax = ((System.Windows.Controls.TextBox)(target)); return; case 14: this.Total_Price_With_Tax = ((System.Windows.Controls.TextBox)(target)); return; case 15: this.AddItemsBtn = ((System.Windows.Controls.Button)(target)); #line 104 "..\..\PurchaseOrder.xaml" this.AddItemsBtn.Click += new System.Windows.RoutedEventHandler(this.AddItemBtn_Click); #line default #line hidden return; case 16: this.RemoveItemBtn = ((System.Windows.Controls.Button)(target)); #line 105 "..\..\PurchaseOrder.xaml" this.RemoveItemBtn.Click += new System.Windows.RoutedEventHandler(this.RemoveItemBtn_Click); #line default #line hidden return; case 17: this.searchBtn = ((System.Windows.Controls.Button)(target)); #line 120 "..\..\PurchaseOrder.xaml" this.searchBtn.Click += new System.Windows.RoutedEventHandler(this.SearchBtn_Click); #line default #line hidden return; case 18: this.CopyBtn = ((System.Windows.Controls.Button)(target)); #line 127 "..\..\PurchaseOrder.xaml" this.CopyBtn.Click += new System.Windows.RoutedEventHandler(this.CopyBtn_Click); #line default #line hidden return; case 19: this.NewBtn = ((System.Windows.Controls.Button)(target)); #line 134 "..\..\PurchaseOrder.xaml" this.NewBtn.Click += new System.Windows.RoutedEventHandler(this.NewBtn_Click); #line default #line hidden return; case 20: this.SaveBtn = ((System.Windows.Controls.Button)(target)); #line 141 "..\..\PurchaseOrder.xaml" this.SaveBtn.Click += new System.Windows.RoutedEventHandler(this.SaveBtn_Click); #line default #line hidden return; case 21: this.postBtn = ((System.Windows.Controls.Button)(target)); #line 148 "..\..\PurchaseOrder.xaml" this.postBtn.Click += new System.Windows.RoutedEventHandler(this.SaveBtn_Click); #line default #line hidden return; case 22: this.UndoBtn = ((System.Windows.Controls.Button)(target)); #line 155 "..\..\PurchaseOrder.xaml" this.UndoBtn.Click += new System.Windows.RoutedEventHandler(this.UndoBtn_Click); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 8 "..\..\Connection.xaml" ((BlockchainApp.Connection)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden return; case 2: this.tbUserName = ((System.Windows.Controls.TextBlock)(target)); return; case 3: this.btnLogOut = ((System.Windows.Controls.TextBlock)(target)); #line 26 "..\..\Connection.xaml" this.btnLogOut.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.BtnLogOut_MouseDown); #line default #line hidden #line 26 "..\..\Connection.xaml" this.btnLogOut.MouseEnter += new System.Windows.Input.MouseEventHandler(this.BtnLogOut_MouseEnter); #line default #line hidden #line 26 "..\..\Connection.xaml" this.btnLogOut.MouseLeave += new System.Windows.Input.MouseEventHandler(this.BtnLogOut_MouseLeave); #line default #line hidden return; case 4: this.tbProducer = ((System.Windows.Controls.TextBox)(target)); #line 50 "..\..\Connection.xaml" this.tbProducer.SelectionChanged += new System.Windows.RoutedEventHandler(this.FormFilter_SelectionChanged); #line default #line hidden return; case 5: this.tbStartDate = ((System.Windows.Controls.DatePicker)(target)); #line 53 "..\..\Connection.xaml" this.tbStartDate.SelectedDateChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.FormFilter_SelectionChanged); #line default #line hidden return; case 6: this.tbEndDate = ((System.Windows.Controls.DatePicker)(target)); #line 56 "..\..\Connection.xaml" this.tbEndDate.SelectedDateChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.FormFilter_SelectionChanged); #line default #line hidden return; case 7: this.btnProducerRank = ((System.Windows.Controls.Button)(target)); #line 86 "..\..\Connection.xaml" this.btnProducerRank.Click += new System.Windows.RoutedEventHandler(this.BtnProducerRank_Click); #line default #line hidden return; case 8: this.btnUserRank = ((System.Windows.Controls.Button)(target)); #line 87 "..\..\Connection.xaml" this.btnUserRank.Click += new System.Windows.RoutedEventHandler(this.BtnUserRank_Click); #line default #line hidden return; case 9: this.btnDetails = ((System.Windows.Controls.Button)(target)); #line 105 "..\..\Connection.xaml" this.btnDetails.Click += new System.Windows.RoutedEventHandler(this.BtnDetails_Click); #line default #line hidden return; case 10: this.btnFake = ((System.Windows.Controls.Button)(target)); #line 106 "..\..\Connection.xaml" this.btnFake.Click += new System.Windows.RoutedEventHandler(this.BtnReport_Click); #line default #line hidden return; case 11: this.grpAdd = ((System.Windows.Controls.GroupBox)(target)); return; case 12: this.btnAdd = ((System.Windows.Controls.Button)(target)); #line 121 "..\..\Connection.xaml" this.btnAdd.Click += new System.Windows.RoutedEventHandler(this.BtnAdd_Click); #line default #line hidden return; case 13: this.lstProducts = ((System.Windows.Controls.ListView)(target)); #line 128 "..\..\Connection.xaml" this.lstProducts.AddHandler(System.Windows.Controls.Primitives.ButtonBase.ClickEvent, new System.Windows.RoutedEventHandler(this.ColumnHeader_Click)); #line default #line hidden #line 128 "..\..\Connection.xaml" this.lstProducts.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.LstProducts_SelectionChanged); #line default #line hidden return; case 14: this.ContentView = ((System.Windows.Controls.FlowDocumentReader)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.bankAccountInformation = ((System.Windows.Controls.DataGrid)(target)); #line 20 "..\..\..\Views\BankAccountInformationView.xaml" this.bankAccountInformation.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.dg1_SelectionChanged); #line default #line hidden return; case 2: this.tableID = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 3: this.tableDate = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 4: this.tableDeposit = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 5: this.tableInterest = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 6: this.tableWithdraw = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 7: this.tableServiceCharge = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 8: this.tableRemains = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 9: #line 78 "..\..\..\Views\BankAccountInformationView.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Print_Data); #line default #line hidden return; case 10: this.Deposit = ((System.Windows.Controls.TextBox)(target)); return; case 11: this.Interest = ((System.Windows.Controls.TextBox)(target)); return; case 12: this.Withdraw = ((System.Windows.Controls.TextBox)(target)); return; case 13: this.ServiceCharge = ((System.Windows.Controls.TextBox)(target)); return; case 14: this.EntryNo = ((System.Windows.Controls.TextBox)(target)); return; case 15: this.Date = ((System.Windows.Controls.DatePicker)(target)); return; case 16: this.Save = ((System.Windows.Controls.Button)(target)); #line 115 "..\..\..\Views\BankAccountInformationView.xaml" this.Save.Click += new System.Windows.RoutedEventHandler(this.Save_Click); #line default #line hidden return; case 17: this.Remove = ((System.Windows.Controls.Button)(target)); #line 139 "..\..\..\Views\BankAccountInformationView.xaml" this.Remove.Click += new System.Windows.RoutedEventHandler(this.Remove_Click); #line default #line hidden return; case 18: this.Edit = ((System.Windows.Controls.Button)(target)); #line 160 "..\..\..\Views\BankAccountInformationView.xaml" this.Edit.Click += new System.Windows.RoutedEventHandler(this.Edit_Click); #line default #line hidden return; case 19: this.image = ((System.Windows.Controls.Image)(target)); return; case 20: this.label = ((System.Windows.Controls.Label)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 9 "..\..\WindowZamowienia.xaml" ((ProjectRC.WindowZamowienia)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden return; case 2: this.zamowieniaDataGrid = ((System.Windows.Controls.DataGrid)(target)); #line 22 "..\..\WindowZamowienia.xaml" this.zamowieniaDataGrid.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.zamowieniaDataGrid_SelectionChanged); #line default #line hidden return; case 3: this.id_zamowieniaColumn = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 4: this.id_klientaColumn = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 5: this.id_produktuColumn = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 6: this.rabatColumn = ((System.Windows.Controls.DataGridTextColumn)(target)); return; case 7: this.data_zakupuColumn = ((System.Windows.Controls.DataGridTemplateColumn)(target)); return; case 8: #line 39 "..\..\WindowZamowienia.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); #line default #line hidden return; case 9: #line 40 "..\..\WindowZamowienia.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_2); #line default #line hidden return; case 10: #line 41 "..\..\WindowZamowienia.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_1); #line default #line hidden return; case 11: this.grid1 = ((System.Windows.Controls.Grid)(target)); return; case 12: this.data_zakupuDatePicker = ((System.Windows.Controls.DatePicker)(target)); return; case 13: this.id_klientaTextBox = ((System.Windows.Controls.TextBox)(target)); return; case 14: this.id_produktuTextBox = ((System.Windows.Controls.TextBox)(target)); return; case 15: this.rabatTextBox = ((System.Windows.Controls.TextBox)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.alarmListGrid = ((System.Windows.Controls.Grid)(target)); return; case 2: this.alarmList = ((System.Windows.Controls.ListView)(target)); #line 20 "..\..\MainWindow.xaml" this.alarmList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.alarmList_SelectionChanged); #line default #line hidden return; case 3: #line 26 "..\..\MainWindow.xaml" ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.EditAlarm_Click); #line default #line hidden return; case 4: #line 27 "..\..\MainWindow.xaml" ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.EditSnooze_Click); #line default #line hidden return; case 5: #line 28 "..\..\MainWindow.xaml" ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.DeleteAlarm_Click); #line default #line hidden return; case 6: this.timeGrid = ((System.Windows.Controls.Grid)(target)); return; case 7: this.digitalGrid = ((System.Windows.Controls.Grid)(target)); return; case 8: this.timeLabel = ((System.Windows.Controls.Label)(target)); return; case 9: this.analogGrid = ((System.Windows.Controls.Grid)(target)); return; case 10: this.clockface = ((System.Windows.Controls.Image)(target)); return; case 11: this.hours = ((System.Windows.Controls.Image)(target)); return; case 12: this.minutes = ((System.Windows.Controls.Image)(target)); return; case 13: this.seconds = ((System.Windows.Controls.Image)(target)); return; case 14: this.analogCheckBox = ((System.Windows.Controls.CheckBox)(target)); return; case 15: this.addAlarmGrid = ((System.Windows.Controls.Grid)(target)); return; case 16: this.alarmNameTextBox = ((System.Windows.Controls.TextBox)(target)); return; case 17: this.alarmDescriptionTextBox = ((System.Windows.Controls.TextBox)(target)); return; case 18: this.label = ((System.Windows.Controls.Label)(target)); return; case 19: this.hourComboBox = ((System.Windows.Controls.ComboBox)(target)); return; case 20: this.minuteComboBox = ((System.Windows.Controls.ComboBox)(target)); return; case 21: this.amPMComboBox = ((System.Windows.Controls.ComboBox)(target)); #line 54 "..\..\MainWindow.xaml" this.amPMComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.amPMComboBox_SelectionChanged); #line default #line hidden return; case 22: this.label1 = ((System.Windows.Controls.Label)(target)); return; case 23: this.dateOfAlarm = ((System.Windows.Controls.DatePicker)(target)); return; case 24: this.label_Copy = ((System.Windows.Controls.Label)(target)); return; case 25: this.addButton = ((System.Windows.Controls.Button)(target)); #line 58 "..\..\MainWindow.xaml" this.addButton.Click += new System.Windows.RoutedEventHandler(this.addButton_Click); #line default #line hidden return; case 26: this.label_Copy1 = ((System.Windows.Controls.Label)(target)); return; case 27: this.label_Copy2 = ((System.Windows.Controls.Label)(target)); return; case 28: this.cancel = ((System.Windows.Controls.Button)(target)); #line 61 "..\..\MainWindow.xaml" this.cancel.Click += new System.Windows.RoutedEventHandler(this.cancel_Click); #line default #line hidden return; case 29: this.save = ((System.Windows.Controls.Button)(target)); #line 62 "..\..\MainWindow.xaml" this.save.Click += new System.Windows.RoutedEventHandler(this.save_Click); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 17 "..\..\..\DataManager\ExperienceControl.xaml" ((System.Windows.Controls.ContextMenu)(target)).Opened += new System.Windows.RoutedEventHandler(this.ContextMenu_Opened); #line default #line hidden return; case 2: #line 23 "..\..\..\DataManager\ExperienceControl.xaml" ((System.Windows.Controls.ContextMenu)(target)).Opened += new System.Windows.RoutedEventHandler(this.ContextMenu_Opened); #line default #line hidden return; case 4: #line 39 "..\..\..\DataManager\ExperienceControl.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed_ViewDetail); #line default #line hidden return; case 5: #line 40 "..\..\..\DataManager\ExperienceControl.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed_Delete); #line default #line hidden return; case 6: #line 41 "..\..\..\DataManager\ExperienceControl.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed_Add); #line default #line hidden return; case 7: this.cmbType = ((System.Windows.Controls.ComboBox)(target)); return; case 8: this.cmdState = ((System.Windows.Controls.ComboBox)(target)); return; case 9: this.dpTime = ((System.Windows.Controls.DatePicker)(target)); return; case 10: #line 76 "..\..\..\DataManager\ExperienceControl.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); #line default #line hidden return; case 11: this.dgGrid = ((System.Windows.Controls.DataGrid)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 4 "..\..\..\WpfDanhsachXLNto.xaml" ((INTELECTINFOR.WpfDanhsachXLNto)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden return; case 2: this.border1 = ((System.Windows.Controls.Border)(target)); return; case 3: this.label2 = ((System.Windows.Controls.Label)(target)); return; case 4: this.lbMapos = ((System.Windows.Controls.Label)(target)); return; case 5: this.label4 = ((System.Windows.Controls.Label)(target)); return; case 6: this.radCbbMaxa = ((Telerik.Windows.Controls.RadComboBox)(target)); return; case 7: this.label5 = ((System.Windows.Controls.Label)(target)); return; case 8: this.lbPrint = ((System.Windows.Controls.Label)(target)); #line 25 "..\..\..\WpfDanhsachXLNto.xaml" this.lbPrint.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.lbPrint_MouseDown); #line default #line hidden return; case 9: this.lbhuy = ((System.Windows.Controls.Label)(target)); #line 39 "..\..\..\WpfDanhsachXLNto.xaml" this.lbhuy.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.lbhuy_MouseDown); #line default #line hidden return; case 10: this.radcbbPos = ((Telerik.Windows.Controls.RadComboBox)(target)); #line 53 "..\..\..\WpfDanhsachXLNto.xaml" this.radcbbPos.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.radcbbPos_SelectionChanged); #line default #line hidden return; case 11: this.datePicker1 = ((System.Windows.Controls.DatePicker)(target)); return; case 12: this.image1 = ((System.Windows.Controls.Image)(target)); return; case 13: this.label1 = ((System.Windows.Controls.Label)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 20 "..\..\MainWindow.xaml" ((ClinicApp.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing); #line default #line hidden return; case 2: #line 27 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.OpenWinPatientCommand_Executed); #line default #line hidden #line 27 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.OpenWinPatientCommand_CanExecute); #line default #line hidden return; case 3: #line 28 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CloseWinPatientCommand_Executed); #line default #line hidden #line 28 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CloseWinPatientCommand_CanExecute); #line default #line hidden return; case 4: #line 29 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.OpenWinVisitCommand_Executed); #line default #line hidden #line 29 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.OpenWinVisitCommand_CanExecute); #line default #line hidden return; case 5: #line 30 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CloseWinVisitCommand_Executed); #line default #line hidden #line 30 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CloseWinVisitCommand_CanExecute); #line default #line hidden return; case 6: #line 31 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.OpenDeleteDialogCommand_Executed); #line default #line hidden #line 31 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.OpenDeleteDialogCommand_CanExecute); #line default #line hidden return; case 7: #line 32 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CloseDeleteDialogCommand_Executed); #line default #line hidden #line 32 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CloseDeleteDialogCommand_CanExecute); #line default #line hidden return; case 8: #line 33 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.SelectMenuItemCommand_Executed); #line default #line hidden #line 33 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.SelectMenuItemCommand_CanExecute); #line default #line hidden return; case 9: #line 34 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.AddImageCommand_Executed); #line default #line hidden return; case 10: #line 35 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.SetImageControlCommand_Executed); #line default #line hidden return; case 11: #line 36 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.FlippedChangedCommand_Executed); #line default #line hidden #line 36 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.FlippedChangedCommand_CanExecute); #line default #line hidden return; case 12: #line 37 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CloseCommand_Executed); #line default #line hidden return; case 13: this.MenuToggleButton = ((System.Windows.Controls.Primitives.ToggleButton)(target)); return; case 14: this.dummyElement = ((System.Windows.FrameworkElement)(target)); return; case 15: this.MenuDriverHost = ((MaterialDesignThemes.Wpf.DrawerHost)(target)); return; case 16: this.brd = ((System.Windows.Controls.StackPanel)(target)); return; case 17: this.tabControl = ((System.Windows.Controls.TabControl)(target)); return; case 18: this.DGPatientList = ((System.Windows.Controls.DataGrid)(target)); return; case 19: this.DGVisitList = ((System.Windows.Controls.DataGrid)(target)); return; case 20: this.Doctors_ItemControl = ((System.Windows.Controls.ItemsControl)(target)); return; case 21: this.RB_1 = ((System.Windows.Controls.RadioButton)(target)); return; case 22: this.RB_2 = ((System.Windows.Controls.RadioButton)(target)); return; case 23: this.RB_3 = ((System.Windows.Controls.RadioButton)(target)); return; case 24: this.textBlock_CountRecords = ((System.Windows.Controls.TextBlock)(target)); return; case 25: this.DialogHost_Patient = ((MaterialDesignThemes.Wpf.DialogHost)(target)); return; case 26: this.textBox_Surname = ((System.Windows.Controls.TextBox)(target)); return; case 27: this.textBox_Name = ((System.Windows.Controls.TextBox)(target)); return; case 28: this.datePicker_BirthDate = ((System.Windows.Controls.DatePicker)(target)); return; case 29: this.CBGender = ((System.Windows.Controls.ComboBox)(target)); return; case 30: this.DialogHost_Visit = ((MaterialDesignThemes.Wpf.DialogHost)(target)); return; case 31: this.comboBox_Patient = ((System.Windows.Controls.ComboBox)(target)); return; case 32: this.datePicker_DateVisit = ((System.Windows.Controls.DatePicker)(target)); return; case 33: this.comboBox_InitialVisit = ((System.Windows.Controls.ComboBox)(target)); return; case 34: this.DialogHost_DeleteRow = ((MaterialDesignThemes.Wpf.DialogHost)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 8 "..\..\Attendance.xaml" ((MariEtFemme.View.Attendance)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden return; case 2: this.btnCancel = ((System.Windows.Controls.Button)(target)); #line 19 "..\..\Attendance.xaml" this.btnCancel.Click += new System.Windows.RoutedEventHandler(this.btnCancel_Click); #line default #line hidden return; case 3: this.btnApply = ((System.Windows.Controls.Button)(target)); #line 20 "..\..\Attendance.xaml" this.btnApply.Click += new System.Windows.RoutedEventHandler(this.btnApply_Click); #line default #line hidden return; case 4: this.btnRemove = ((System.Windows.Controls.Button)(target)); #line 21 "..\..\Attendance.xaml" this.btnRemove.Click += new System.Windows.RoutedEventHandler(this.btnRemove_Click); #line default #line hidden return; case 5: this.btnEdit = ((System.Windows.Controls.Button)(target)); #line 22 "..\..\Attendance.xaml" this.btnEdit.Click += new System.Windows.RoutedEventHandler(this.btnEdit_Click); #line default #line hidden return; case 6: this.btnNew = ((System.Windows.Controls.Button)(target)); #line 23 "..\..\Attendance.xaml" this.btnNew.Click += new System.Windows.RoutedEventHandler(this.btnNew_Click); #line default #line hidden return; case 7: this.btnClose = ((System.Windows.Controls.Button)(target)); #line 27 "..\..\Attendance.xaml" this.btnClose.Click += new System.Windows.RoutedEventHandler(this.btnClose_Click); #line default #line hidden return; case 8: this.lblTitle = ((System.Windows.Controls.Label)(target)); return; case 9: this.lblDate = ((System.Windows.Controls.Label)(target)); return; case 10: this.dpDate = ((System.Windows.Controls.DatePicker)(target)); return; case 11: this.lblClient = ((System.Windows.Controls.Label)(target)); return; case 12: this.lblClientName = ((System.Windows.Controls.Label)(target)); return; case 13: this.btnSearchClient = ((System.Windows.Controls.Button)(target)); #line 36 "..\..\Attendance.xaml" this.btnSearchClient.Click += new System.Windows.RoutedEventHandler(this.btnSearchClient_Click); #line default #line hidden return; case 14: this.lblEmployee = ((System.Windows.Controls.Label)(target)); return; case 15: this.lblEmployeeName = ((System.Windows.Controls.Label)(target)); return; case 16: this.btnSearchEmployee = ((System.Windows.Controls.Button)(target)); #line 41 "..\..\Attendance.xaml" this.btnSearchEmployee.Click += new System.Windows.RoutedEventHandler(this.btnSearchEmployee_Click); #line default #line hidden return; case 17: this.btnSearchService = ((System.Windows.Controls.Button)(target)); #line 44 "..\..\Attendance.xaml" this.btnSearchService.Click += new System.Windows.RoutedEventHandler(this.btnSearchService_Click); #line default #line hidden return; case 18: this.btnRemoveService = ((System.Windows.Controls.Button)(target)); #line 45 "..\..\Attendance.xaml" this.btnRemoveService.Click += new System.Windows.RoutedEventHandler(this.btnRemoveService_Click); #line default #line hidden return; case 19: this.lblServices = ((System.Windows.Controls.Label)(target)); return; case 20: this.dataGridService = ((System.Windows.Controls.DataGrid)(target)); #line 47 "..\..\Attendance.xaml" this.dataGridService.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.dataGridService_SelectionChanged); #line default #line hidden return; case 21: this.lblFeedStock = ((System.Windows.Controls.Label)(target)); return; case 22: this.dataGridStuff = ((System.Windows.Controls.DataGrid)(target)); return; case 23: this.lblObsAttend = ((System.Windows.Controls.Label)(target)); return; case 24: this.txtObsAttend = ((System.Windows.Controls.TextBox)(target)); return; case 25: this.lblObsAttendClient = ((System.Windows.Controls.Label)(target)); return; case 26: this.txtlblObsPersonal = ((System.Windows.Controls.TextBox)(target)); return; case 27: this.dataGridAddService = ((System.Windows.Controls.DataGrid)(target)); return; case 28: this.dataGridAddClient = ((System.Windows.Controls.DataGrid)(target)); return; case 29: this.dataGridAddEmployee = ((System.Windows.Controls.DataGrid)(target)); return; case 30: this.dataGridAttendance = ((System.Windows.Controls.DataGrid)(target)); #line 79 "..\..\Attendance.xaml" this.dataGridAttendance.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.dataGridAttendance_SelectionChanged); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.LocationSearchFilter = ((System.Windows.Controls.TextBox)(target)); return; case 2: this.NearBeachFilter = ((System.Windows.Controls.ComboBox)(target)); return; case 3: this.AcceptsPetsFilter = ((System.Windows.Controls.ComboBox)(target)); return; case 4: this.SleepsMinimumFilter = ((System.Windows.Controls.TextBox)(target)); return; case 5: this.BedsMinimumFilter = ((System.Windows.Controls.TextBox)(target)); return; case 6: this.AvailabilityFromFilter = ((System.Windows.Controls.DatePicker)(target)); return; case 7: this.FilterSearch = ((System.Windows.Controls.Button)(target)); #line 59 "..\..\..\MainWindow.xaml" this.FilterSearch.Click += new System.Windows.RoutedEventHandler(this.FilterSearch_Click); #line default #line hidden return; case 8: this.PropertyGrid = ((System.Windows.Controls.DataGrid)(target)); return; case 9: this.btnFirst = ((System.Windows.Controls.Button)(target)); #line 70 "..\..\..\MainWindow.xaml" this.btnFirst.Click += new System.Windows.RoutedEventHandler(this.btnFirst_Click); #line default #line hidden return; case 10: this.btnPrev = ((System.Windows.Controls.Button)(target)); #line 73 "..\..\..\MainWindow.xaml" this.btnPrev.Click += new System.Windows.RoutedEventHandler(this.btnPrev_Click); #line default #line hidden return; case 11: this.lblpageInformation = ((System.Windows.Controls.Label)(target)); return; case 12: this.btnNext = ((System.Windows.Controls.Button)(target)); #line 85 "..\..\..\MainWindow.xaml" this.btnNext.Click += new System.Windows.RoutedEventHandler(this.btnNext_Click); #line default #line hidden return; case 13: this.btnLast = ((System.Windows.Controls.Button)(target)); #line 89 "..\..\..\MainWindow.xaml" this.btnLast.Click += new System.Windows.RoutedEventHandler(this.btnLast_Click); #line default #line hidden return; case 14: this.cbNumberOfRecords = ((System.Windows.Controls.ComboBox)(target)); #line 95 "..\..\..\MainWindow.xaml" this.cbNumberOfRecords.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cbNumberOfRecords_SelectionChanged); #line default #line hidden return; case 15: this.btnCancel = ((System.Windows.Controls.Button)(target)); #line 104 "..\..\..\MainWindow.xaml" this.btnCancel.Click += new System.Windows.RoutedEventHandler(this.btnCancel_Click); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.MainGrid = ((System.Windows.Controls.Grid)(target)); return; case 2: this.BtnNextValue = ((System.Windows.Controls.Button)(target)); return; case 3: this.BtnLastValue = ((System.Windows.Controls.Button)(target)); return; case 4: this.BtnMenu = ((System.Windows.Controls.Button)(target)); #line 13 "..\..\MainWindow.xaml" this.BtnMenu.Click += new System.Windows.RoutedEventHandler(this.BtnMenu_Click); #line default #line hidden return; case 5: this.BtnNewSchedule = ((System.Windows.Controls.Button)(target)); #line 14 "..\..\MainWindow.xaml" this.BtnNewSchedule.Click += new System.Windows.RoutedEventHandler(this.BtnNewSchedule_Click); #line default #line hidden return; case 6: this.BtnEditSchedule = ((System.Windows.Controls.Button)(target)); #line 15 "..\..\MainWindow.xaml" this.BtnEditSchedule.Click += new System.Windows.RoutedEventHandler(this.BtnEditSchedule_Click); #line default #line hidden return; case 7: this.MonthLabel = ((System.Windows.Controls.Label)(target)); #line 16 "..\..\MainWindow.xaml" this.MonthLabel.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.BtnFocusMonth); #line default #line hidden return; case 8: this.YearLabel = ((System.Windows.Controls.Label)(target)); return; case 9: this.DayNamesGrid = ((System.Windows.Controls.Grid)(target)); return; case 10: this.CalendarGrid = ((System.Windows.Controls.Grid)(target)); return; case 11: this.TimeTableGrid = ((System.Windows.Controls.Grid)(target)); return; case 12: this.ScheduleFormGrid = ((System.Windows.Controls.Grid)(target)); return; case 13: #line 95 "..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnCreateNewSchedule_Click); #line default #line hidden return; case 14: #line 96 "..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.CancelSchedule_Click); #line default #line hidden return; case 15: this.ScheduleTitleTextBox = ((System.Windows.Controls.TextBox)(target)); return; case 16: this.ScheduleDescriptionTextBox = ((System.Windows.Controls.TextBox)(target)); return; case 17: this.DateStartInput = ((System.Windows.Controls.DatePicker)(target)); return; case 18: this.StartingHourComboBox = ((System.Windows.Controls.ComboBox)(target)); #line 106 "..\..\MainWindow.xaml" this.StartingHourComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.StartingHourComboBox_SelectionChanged); #line default #line hidden return; case 19: this.EndingHourComboBox = ((System.Windows.Controls.ComboBox)(target)); return; case 20: this.MenuGrid = ((System.Windows.Controls.Grid)(target)); return; case 21: this.UsernameTextBox = ((System.Windows.Controls.TextBox)(target)); return; case 22: this.BtnUserConfirm = ((System.Windows.Controls.Button)(target)); #line 139 "..\..\MainWindow.xaml" this.BtnUserConfirm.Click += new System.Windows.RoutedEventHandler(this.BtnUserConfirm_Click); #line default #line hidden return; case 23: this.BtnUserCancel = ((System.Windows.Controls.Button)(target)); #line 140 "..\..\MainWindow.xaml" this.BtnUserCancel.Click += new System.Windows.RoutedEventHandler(this.BtnUserCancel_Click); #line default #line hidden return; case 24: this.EditScheduleFormGrid = ((System.Windows.Controls.Grid)(target)); return; case 25: #line 144 "..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnEditCurrentSchedule_Click); #line default #line hidden return; case 26: #line 145 "..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnRemoveSchedule_Click); #line default #line hidden return; case 27: #line 146 "..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.CancelSchedule_Click); #line default #line hidden return; case 28: #line 147 "..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnAddInvitee_Click); #line default #line hidden return; case 29: this.EditScheduleTitleTextBox = ((System.Windows.Controls.TextBox)(target)); return; case 30: this.EditScheduleDescriptionTextBox = ((System.Windows.Controls.TextBox)(target)); return; case 31: this.EditDateStartInput = ((System.Windows.Controls.DatePicker)(target)); return; case 32: this.EditStartingHourComboBox = ((System.Windows.Controls.ComboBox)(target)); return; case 33: this.EditEndingHourComboBox = ((System.Windows.Controls.ComboBox)(target)); return; case 34: this.SelectScheduleComboBox = ((System.Windows.Controls.ComboBox)(target)); #line 211 "..\..\MainWindow.xaml" this.SelectScheduleComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.SelectScheduleComboBox_SelectionChanged); #line default #line hidden return; case 35: this.AddInviteeComboBox = ((System.Windows.Controls.ComboBox)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.label = ((System.Windows.Controls.Label)(target)); return; case 2: this.textBoxNom = ((System.Windows.Controls.TextBox)(target)); return; case 3: this.label2 = ((System.Windows.Controls.Label)(target)); return; case 4: this.textBoxPrenom = ((System.Windows.Controls.TextBox)(target)); return; case 5: this.label3 = ((System.Windows.Controls.Label)(target)); return; case 6: this.datePickerDateArrivee = ((System.Windows.Controls.DatePicker)(target)); return; case 7: this.label4 = ((System.Windows.Controls.Label)(target)); return; case 8: this.textBoxTéléphoneFixe = ((System.Windows.Controls.TextBox)(target)); return; case 9: this.label5 = ((System.Windows.Controls.Label)(target)); return; case 10: this.textBoxTelephonePortable = ((System.Windows.Controls.TextBox)(target)); return; case 11: this.label6 = ((System.Windows.Controls.Label)(target)); return; case 12: this.textBoxAdresse = ((System.Windows.Controls.TextBox)(target)); return; case 13: this.label7 = ((System.Windows.Controls.Label)(target)); return; case 14: this.datePickerDateNaissance = ((System.Windows.Controls.DatePicker)(target)); return; case 15: #line 39 "..\..\..\..\..\src\Views\Clients\ModifierClientWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); #line default #line hidden return; } this._contentLoaded = true; }