void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.CheckBox = ((DevExpress.Xpf.Editors.CheckEdit)(target)); #line 29 "..\..\..\Modules\RowTemplate.xaml" this.CheckBox.Checked += new System.Windows.RoutedEventHandler(this.CheckBox_Checked); #line default #line hidden #line 29 "..\..\..\Modules\RowTemplate.xaml" this.CheckBox.Unchecked += new System.Windows.RoutedEventHandler(this.CheckBox_Unchecked); #line default #line hidden return; case 2: this.rowTemplateComboBox = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); #line 31 "..\..\..\Modules\RowTemplate.xaml" this.rowTemplateComboBox.EditValueChanged += new DevExpress.Xpf.Editors.EditValueChangedEventHandler(this.RowTemplateComboBox_SelectionChanged); #line default #line hidden return; case 3: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 4: this.colEMail = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 5: this.view = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }
// 重置列信息 private void _ResetColumns(IEnumerable cloumns) { this.grid.Columns.Clear(); if (cloumns == null) { return; } DataTemplate template = null; foreach (IGridViewColumn c in cloumns) { DevExpress.Xpf.Grid.GridColumn column = new DevExpress.Xpf.Grid.GridColumn(); column.Header = c.Header; column.Width = c.Width; if (c.IsSort && !c.FieldName.IsNullOrEmptyOrWhiteSpace()) { column.FieldName = c.FieldName; } DataTemplate temp = null; IGridViewCellTemplateProvider _proverder = null; foreach (IGridViewCellTemplateProvider proverder in this._providers) { temp = proverder.CreateCellTemplate(c); if (temp != null) { template = temp; _proverder = proverder; } } if (_proverder == null || template == null) { throw new Exception("No suitable proverder."); } column.CellTemplate = template; column.Tag = c; c.Column = column; Binding binding = new Binding(); binding.Source = c; binding.Path = new PropertyPath("IsVisible"); column.SetBinding(GridColumn.VisibleProperty, binding); this.grid.Columns.Add(column); } }
protected override GridColumn getColumn(GrilleColumn grilleColumn, bool readOnly = false) { DevExpress.Xpf.Grid.GridColumn column = new DevExpress.Xpf.Grid.GridColumn(); column.FieldName = grilleColumn.name; column.IsSmart = true; column.ReadOnly = this.IsReadOnly || this.Grille.IsReadOnly() || readOnly; column.ColumnFilterMode = ColumnFilterMode.DisplayText; Binding b = new Binding(getBindingName(grilleColumn)); b.Mode = BindingMode.TwoWay; column.Binding = b; column.Style = this.gridControl.FindResource("GridColumn") as Style; column.Width = new GridColumnWidth(1, GridColumnUnitType.Star); setColumnEditSettings(column, grilleColumn, readOnly); return(column); }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.detailsModifyForm = ((DevExpress.Xpf.LayoutControl.LayoutGroup)(target)); return; case 2: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 3: this.view = ((DevExpress.Xpf.Grid.TableView)(target)); return; case 4: this.userName = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 6: #line 74 "..\..\..\..\Views\Settings\UserAdministrate.xaml" ((DevExpress.Xpf.Editors.ButtonInfo)(target)).Click += new System.Windows.RoutedEventHandler(this.Update); #line default #line hidden return; case 7: #line 88 "..\..\..\..\Views\Settings\UserAdministrate.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.UsersExecute); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.sortModeList = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); #line 26 "..\..\..\Modules\SortBySummary.xaml" this.sortModeList.EditValueChanged += new DevExpress.Xpf.Editors.EditValueChangedEventHandler(this.sortModeList_SelectionChanged); #line default #line hidden return; case 2: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 3: this.colOrderDate = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 4: this.colUnitPrice = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 5: this.colCount = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 6: this.colOrderSum = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: this.view = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.navigator = ((DXDemo.Controls.CollectionViewNavigator)(target)); return; case 2: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 3: this.colCountry = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 4: this.View = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }
protected virtual GridColumn getColumn(GrilleColumn grilleColumn, bool readOnly = false) { DevExpress.Xpf.Grid.GridColumn column = new DevExpress.Xpf.Grid.GridColumn(); column.FieldName = grilleColumn.name; column.IsSmart = true; column.ReadOnly = this.IsReadOnly || this.Grille.IsReadOnly() || readOnly; column.ColumnFilterMode = ColumnFilterMode.DisplayText; Binding b = new Binding(getBindingName(grilleColumn)); b.Mode = BindingMode.TwoWay; column.Binding = b; setColumnEditSettings(column, grilleColumn, readOnly); if (grilleColumn.type.Equals(ParameterType.PERIOD.ToString()) || grilleColumn.type.Equals(ParameterType.MEASURE.ToString()) || grilleColumn.type.Equals(ParameterType.SPECIAL_MEASURE.ToString())) { column.ColumnFilterMode = ColumnFilterMode.Value; } return(column); }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.showGroupFooters = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 2: this.alignByColumnsCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 3: this.summaryItemTemplateComboBox = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); #line 54 "..\..\..\Modules\DataGroupSummaries.xaml" this.summaryItemTemplateComboBox.EditValueChanged += new DevExpress.Xpf.Editors.EditValueChangedEventHandler(this.summaryItemTemplateComboBox_SelectionChanged); #line default #line hidden return; case 4: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 5: this.colCity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 6: this.view = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 9 "..\..\MainWindow.xaml" ((My_Application.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden return; case 2: #line 17 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.AddPerson_Executed); #line default #line hidden return; case 3: this.gcId = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 4: this.gcName = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 5: this.txtName = ((System.Windows.Controls.TextBox)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.viewListBox = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); #line 31 "..\..\..\Modules\PersistentRowState.xaml" this.viewListBox.EditValueChanged += new DevExpress.Xpf.Editors.EditValueChangedEventHandler(this.viewListBox_SelectionChanged); #line default #line hidden return; case 2: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 3: this.colTrademark = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 4: this.colModel = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 5: this.colCategory = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 6: this.colPrice = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.workbenchViewBarmanager = ((DevExpress.Xpf.Bars.BarManager)(target)); return; case 2: this.accountView = ((DevExpress.Xpf.Bars.BarButtonItem)(target)); return; case 3: this.mainMenuBar = ((DevExpress.Xpf.Bars.Bar)(target)); return; case 4: this.dockManagerSearch = ((DevExpress.Xpf.Docking.DockLayoutManager)(target)); return; case 5: this.LayoutGroup3 = ((DevExpress.Xpf.Docking.LayoutGroup)(target)); return; case 6: this.searchPortia = ((DevExpress.Xpf.Docking.LayoutPanel)(target)); return; case 7: this.searchDtc = ((DevExpress.Xpf.Docking.LayoutPanel)(target)); return; case 8: this.dockManager1 = ((DevExpress.Xpf.Docking.DockLayoutManager)(target)); return; case 9: this.RootGroup = ((DevExpress.Xpf.Docking.LayoutGroup)(target)); return; case 10: this.LayoutGroup1 = ((DevExpress.Xpf.Docking.LayoutGroup)(target)); return; case 11: this.LayoutGroup2 = ((DevExpress.Xpf.Docking.LayoutGroup)(target)); return; case 12: this.portiaResults = ((DevExpress.Xpf.Docking.LayoutPanel)(target)); return; case 13: this.grdPortia = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 14: this.dtcResults = ((DevExpress.Xpf.Docking.LayoutPanel)(target)); return; case 15: this.grdDtc = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 16: this.paneSerachResults = ((DevExpress.Xpf.Docking.LayoutPanel)(target)); return; case 17: this.grdAccount = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 18: this.grdDtcAccount = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 19: this.grdPortiaAccount = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.userControl = ((BluePrints.Views.PROJECTWORKPACKDetailsMappingView_Unused)(target)); return; case 2: this.grid = ((System.Windows.Controls.Grid)(target)); return; case 3: this.LayoutGroupSchedule = ((DevExpress.Xpf.LayoutControl.LayoutGroup)(target)); return; case 4: this.barManager1 = ((DevExpress.Xpf.Bars.BarManager)(target)); return; case 5: this.barArrangeView = ((DevExpress.Xpf.Bars.Bar)(target)); return; case 6: this.barGroupBy = ((DevExpress.Xpf.Bars.Bar)(target)); return; case 7: this.biSwitchToDayView = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 8: this.biSwitchToWorkWeekView = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 9: this.biSwitchToWeekView = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 10: this.biSwitchToFullWeekView = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 11: this.biSwitchToMonthView = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 12: this.biSwitchToTimelineView = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 13: this.biSwitchToGroupByNone = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 14: this.biSwitchToGroupByDate = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 15: this.biSwitchToGroupByResource = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 16: this.scheduler = ((DevExpress.Xpf.Scheduler.SchedulerControl)(target)); return; case 17: this.LayoutGroupGrid = ((DevExpress.Xpf.LayoutControl.LayoutGroup)(target)); return; case 18: this.gridControl = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 19: this.colCumulativeBudget = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 20: this.colCumulativeBudgetText = ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)); return; case 21: this.groupSummaryBudgeted = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 22: this.groupSummaryCumulativeEarnedPercentage = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 23: this.groupSummaryPeriodEarnedPercentage = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 24: this.groupSummaryGrossProfit = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 25: this.groupSummaryEfficiencyRatio = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 26: this.groupSummaryProgressRatio = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 27: this.groupSummaryCumulativePlanned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 28: this.groupSummaryCumulativeEarned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 29: this.groupSummaryCumulativeBurned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 30: this.groupSummaryCumulativeActual = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 31: this.groupSummaryPeriodPlanned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 32: this.groupSummaryPeriodEarned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 33: this.groupSummaryPeriodBurned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 34: this.groupSummaryPeriodActual = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 35: this.totalSummaryBudgeted = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 36: this.totalSummaryCumulativeEarnedPercentage = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 37: this.totalSummaryPeriodEarnedPercentage = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 38: this.totalSummaryGrossProfit = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 39: this.totalSummaryEfficiencyRatio = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 40: this.totalSummaryProgressRatio = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 41: this.totalSummaryCumulativePlanned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 42: this.totalSummaryCumulativeEarned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 43: this.totalSummaryCumulativeBurned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 44: this.totalSummaryCumulativeActual = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 45: this.totalSummaryPeriodPlanned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 46: this.totalSummaryPeriodEarned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 47: this.totalSummaryPeriodBurned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 48: this.totalSummaryPeriodActual = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 49: this.tableView = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.GridTimeMeasurements = ((DevExpress.Xpf.Grid.GridControl)(target)); #line 29 "..\..\EditTimeSpanItems.xaml" this.GridTimeMeasurements.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.GridTimeMeasurements_MouseDoubleClick); #line default #line hidden return; case 2: this.ViewTimeMeasurements = ((DevExpress.Xpf.Grid.TableView)(target)); return; case 3: this.gc_marked = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 5: this.gc_TimeFrom = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 6: this.gc_TimeTo = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: this.gc_TimeDelay = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 8: this.GridTimeMeasurementsInfo = ((System.Windows.Controls.Label)(target)); return; case 9: this.btnTimeMeasurementDelete = ((System.Windows.Controls.Button)(target)); #line 67 "..\..\EditTimeSpanItems.xaml" this.btnTimeMeasurementDelete.Click += new System.Windows.RoutedEventHandler(this.btnTimeMeasurementDelete_Click); #line default #line hidden return; case 10: this.btnTimeMeasurementDeleteImage = ((System.Windows.Controls.Image)(target)); return; case 11: this.btnTimeMeasurementAccept = ((System.Windows.Controls.Button)(target)); #line 73 "..\..\EditTimeSpanItems.xaml" this.btnTimeMeasurementAccept.Click += new System.Windows.RoutedEventHandler(this.btnTimeMeasurementAccept_Click); #line default #line hidden return; case 12: this.btnTimeMeasurementAcceptImage = ((System.Windows.Controls.Image)(target)); return; case 13: this.btnTimeMeasurementClose = ((System.Windows.Controls.Button)(target)); #line 79 "..\..\EditTimeSpanItems.xaml" this.btnTimeMeasurementClose.Click += new System.Windows.RoutedEventHandler(this.btnTimeMeasurementClose_Click); #line default #line hidden return; case 14: this.btnCloseImage = ((System.Windows.Controls.Image)(target)); return; } this._contentLoaded = true; }
private void RefreshTraceData(object sender, EventArgs e) { CurrentTraceList = null; traceGrid.ItemsSource = null; traceGrid.Columns.Clear(); List <string> columnNameList = new List <string>(); //columnNameList.Add("Id"); // columnNameList.Add("Level"); columnNameList.Add("Message"); columnNameList.Add("TraceKey"); columnNameList.Add("SystemTime"); columnNameList.Add("Writer"); if (TraceListManager.Data != null) { for (int i = 0; i < TraceListManager.Data.Count; i++) { var trace = new ExpandoObject(); //((IDictionary<string, object>)trace).Add("Id", TraceListManager.Data[i].Id); // ((IDictionary<string, object>)trace).Add("Level", TraceListManager.Data[i].Level); ((IDictionary <string, object>)trace).Add("Message", TraceListManager.Data[i].Message); ((IDictionary <string, object>)trace).Add("TraceKey", TraceListManager.Data[i].TraceKey); ((IDictionary <string, object>)trace).Add("SystemTime", TraceListManager.Data[i].SystemTime); ((IDictionary <string, object>)trace).Add("Writer", TraceListManager.Data[i].Writer); if (TraceListManager.Data[i].Data != null) { foreach (KeyValuePair <string, string> data in TraceListManager.Data[i].Data) { ((IDictionary <string, object>)trace).Add(data.Key, data.Value); if (!columnNameList.Contains(data.Key)) { columnNameList.Add(data.Key); } } } CurrentTraceList.Add(trace); } var firstRecord = CurrentTraceList.FirstOrDefault(); foreach (var colName in columnNameList) { //record haye ke in column ro nadarand empty mizaram ta mogheye group by dochare moshkel nasham if (firstRecord != null && !((IDictionary <string, object>)firstRecord).ContainsKey(colName)) { ((IDictionary <string, object>)firstRecord).Add(colName, ""); } DevExpress.Xpf.Grid.GridColumn column = new DevExpress.Xpf.Grid.GridColumn { FieldName = colName }; if (colName.Equals("SystemTime")) { column.EditSettings = new TextEditSettings() { MaskUseAsDisplayFormat = true, Mask = "yyyy-MM-dd HH:mm:ss:ms", MaskType = DevExpress.Xpf.Editors.MaskType.DateTime }; } column.AllowGrouping = DevExpress.Utils.DefaultBoolean.True; Binding bindingExpression = new Binding(colName) { Mode = BindingMode.OneWay }; column.Binding = bindingExpression; traceGrid.Columns.Add(column); } traceGrid.ItemsSource = CurrentTraceList; } }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.tbEntitySearch = ((DevExpress.Xpf.Editors.ComboBoxEdit)(target)); return; case 2: this.btnSearch = ((System.Windows.Controls.Button)(target)); #line 22 "..\..\SelectMSCRMEntity.xaml" this.btnSearch.Click += new System.Windows.RoutedEventHandler(this.btnSearch_Click); #line default #line hidden return; case 3: this.btnSearchImage = ((System.Windows.Controls.Image)(target)); return; case 4: this.SearchGrid = ((DevExpress.Xpf.Grid.GridControl)(target)); #line 39 "..\..\SelectMSCRMEntity.xaml" this.SearchGrid.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.SearchGrid_MouseDoubleClick); #line default #line hidden return; case 5: this.SearchGridview = ((DevExpress.Xpf.Grid.TableView)(target)); return; case 6: this.gc_id = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: this.gc_name = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 8: this.searchInfo = ((System.Windows.Controls.Label)(target)); return; case 9: this.btnAccept = ((System.Windows.Controls.Button)(target)); #line 55 "..\..\SelectMSCRMEntity.xaml" this.btnAccept.Click += new System.Windows.RoutedEventHandler(this.btnAccept_Click); #line default #line hidden return; case 10: this.btnAcceptImage = ((System.Windows.Controls.Image)(target)); return; case 11: this.btnClose = ((System.Windows.Controls.Button)(target)); #line 61 "..\..\SelectMSCRMEntity.xaml" this.btnClose.Click += new System.Windows.RoutedEventHandler(this.btnClose_Click); #line default #line hidden return; case 12: this.btnCancelTimeentryImage_1 = ((System.Windows.Controls.Image)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 20 "..\..\..\Modules\XPOInstantFeedback.xaml" ((DevExpress.Xpf.Core.DataSources.XPInstantFeedbackDataSource)(target)).ResolveSession += new System.EventHandler <DevExpress.Xpo.ResolveSessionEventArgs>(this.XPInstantFeedbackDataSource_ResolveSession); #line default #line hidden #line 20 "..\..\..\Modules\XPOInstantFeedback.xaml" ((DevExpress.Xpf.Core.DataSources.XPInstantFeedbackDataSource)(target)).DismissSession += new System.EventHandler <DevExpress.Xpo.ResolveSessionEventArgs>(this.XPInstantFeedbackDataSource_DismissSession); #line default #line hidden return; case 2: this.filter = ((DevExpress.Xpf.Editors.ComboBoxEdit)(target)); return; case 3: this.waitIndicatorList = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); return; case 4: this.animationStyle = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); return; case 5: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 6: this.colId = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: this.colSubject = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 8: this.colStatus = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 9: this.colCreatedOn = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 10: this.colHoursActive = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 11: this.colProductName = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 12: this.colTechnologyName = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 13: this.colUrgent = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 14: this.view = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }
public void AddColumn(GrilleColumn grilleColumn, bool readOnly = false) { DevExpress.Xpf.Grid.GridColumn column = getColumn(grilleColumn, readOnly); gridControl.Columns.Add(column); }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.editorShowModeCombobox = ((DevExpress.Xpf.Editors.ComboBoxEdit)(target)); return; case 2: this.editorButtonShowModeListBox = ((DevExpress.Xpf.Editors.ComboBoxEdit)(target)); return; case 3: this.booleanColumnEditorListBox = ((DevExpress.Xpf.Editors.ComboBoxEdit)(target)); return; case 4: this.viewsListBox = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); return; case 5: this.autoCompleteCheckBox = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 6: this.immediatePopupCheckBox = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 7: this.alternativeDisplayTemplateCheckBox = ((DevExpress.Xpf.Editors.CheckEdit)(target)); #line 73 "..\..\..\Modules\CellEditors.xaml" this.alternativeDisplayTemplateCheckBox.Checked += new System.Windows.RoutedEventHandler(this.alternativeDisplayTemplateCheckBox_Checked); #line default #line hidden #line 73 "..\..\..\Modules\CellEditors.xaml" this.alternativeDisplayTemplateCheckBox.Unchecked += new System.Windows.RoutedEventHandler(this.alternativeDisplayTemplateCheckBox_Unchecked); #line default #line hidden return; case 8: this.alternativeEditTemplateCheckBox = ((DevExpress.Xpf.Editors.CheckEdit)(target)); #line 74 "..\..\..\Modules\CellEditors.xaml" this.alternativeEditTemplateCheckBox.Checked += new System.Windows.RoutedEventHandler(this.alternativeEditTemplateCheckBox_Checked); #line default #line hidden #line 74 "..\..\..\Modules\CellEditors.xaml" this.alternativeEditTemplateCheckBox.Unchecked += new System.Windows.RoutedEventHandler(this.alternativeEditTemplateCheckBox_Unchecked); #line default #line hidden return; case 9: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 10: this.colId = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 11: this.colPriority = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 12: this.colUserId = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 13: this.colHoursActive = ((DevExpress.Xpf.Grid.GridColumn)(target)); #line 101 "..\..\..\Modules\CellEditors.xaml" this.colHoursActive.Validate += new DevExpress.Xpf.Grid.GridCellValidationEventHandler(this.colHoursActive_Validate); #line default #line hidden return; case 14: #line 103 "..\..\..\Modules\CellEditors.xaml" ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)).GetIsActivatingKey += new DevExpress.Xpf.Editors.Settings.GetIsActivatingKeyEventHandler(this.TextEditSettings_GetIsActivatingKey); #line default #line hidden #line 104 "..\..\..\Modules\CellEditors.xaml" ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)).ProcessActivatingKey += new DevExpress.Xpf.Editors.Settings.ProcessActivatingKeyEventHandler(this.TextEditSettings_ProcessActivatingKey); #line default #line hidden return; case 15: this.colHasAttachment = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.printStyleChooser = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); #line 45 "..\..\..\Modules\AdvancedPrintingOptions.xaml" this.printStyleChooser.EditValueChanged += new DevExpress.Xpf.Editors.EditValueChangedEventHandler(this.printStyleChooser_SelectionChanged); #line default #line hidden return; case 2: this.newTabButton = ((System.Windows.Controls.Button)(target)); #line 55 "..\..\..\Modules\AdvancedPrintingOptions.xaml" this.newTabButton.Click += new System.Windows.RoutedEventHandler(this.newTabButton_Click); #line default #line hidden return; case 3: this.newWindowButton = ((System.Windows.Controls.Button)(target)); #line 58 "..\..\..\Modules\AdvancedPrintingOptions.xaml" this.newWindowButton.Click += new System.Windows.RoutedEventHandler(this.newWindowButton_Click); #line default #line hidden return; case 4: this.tabControl = ((DevExpress.Xpf.Core.DXTabControl)(target)); #line 63 "..\..\..\Modules\AdvancedPrintingOptions.xaml" this.tabControl.TabHidden += new DevExpress.Xpf.Core.TabControlTabHiddenEventHandler(this.tabControl_TabHidden); #line default #line hidden return; case 5: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 6: this.countryColumn = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: this.cityColumn = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 8: this.unitPriceColumn = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 9: this.view = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.ContextMenuModule = ((GridDemo.BuiltInContextMenus)(target)); return; case 2: this.columnMenuRemoveItemCheck = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 3: this.columnMenuAddItemCheck = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 4: this.groupPanelMenuRemoveItemCheck = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 5: this.groupPanelMenuAddItemCheck = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 6: this.totalMenuRemoveItemCheck = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 7: this.barManager = ((DevExpress.Xpf.Bars.BarManager)(target)); return; case 8: this.copyCellDataItem = ((DevExpress.Xpf.Bars.BarButtonItem)(target)); return; case 9: this.copyRowDataItem = ((DevExpress.Xpf.Bars.BarButtonItem)(target)); return; case 10: this.deleteRowItem = ((DevExpress.Xpf.Bars.BarButtonItem)(target)); return; case 11: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); #line 60 "..\..\..\Modules\BuiltInContextMenus.xaml" this.grid.CustomSummary += new DevExpress.Data.CustomSummaryEventHandler(this.grid_CustomSummary); #line default #line hidden #line 60 "..\..\..\Modules\BuiltInContextMenus.xaml" this.grid.CustomSummaryExists += new DevExpress.Data.CustomSummaryExistEventHandler(this.grid_CustomSummaryExists); #line default #line hidden return; case 12: this.colCountry = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 13: this.colUnitPrice = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 14: this.view = ((DevExpress.Xpf.Grid.TableView)(target)); #line 84 "..\..\..\Modules\BuiltInContextMenus.xaml" this.view.ShowGridMenu += new DevExpress.Xpf.Grid.GridMenuEventHandler(this.TableView_ShowGridMenu); #line default #line hidden return; case 15: this.allowSortingItem = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 16: this.allowGroupingItem = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 17: this.allowAllSortingItem = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 18: this.allowAllGroupingItem = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 19: this.copyInfoItem = ((DevExpress.Xpf.Bars.BarSubItem)(target)); return; case 20: this.customSummaryMenuItem = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); #line 108 "..\..\..\Modules\BuiltInContextMenus.xaml" this.customSummaryMenuItem.CheckedChanged += new DevExpress.Xpf.Bars.ItemClickEventHandler(this.customSummaryMenuItem_CheckedChanged); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.FavGrid = ((DevExpress.Xpf.Grid.GridControl)(target)); #line 29 "..\..\SelectFavorite.xaml" this.FavGrid.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.FavGrid_MouseDoubleClick); #line default #line hidden return; case 2: this.FavGridview = ((DevExpress.Xpf.Grid.TableView)(target)); return; case 3: this.gc_type = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 4: this.gc_desc = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 5: this.FAVSearchInfo = ((System.Windows.Controls.Label)(target)); return; case 6: this.btnFAVDelete = ((System.Windows.Controls.Button)(target)); #line 46 "..\..\SelectFavorite.xaml" this.btnFAVDelete.Click += new System.Windows.RoutedEventHandler(this.btnFAVDelete_Click); #line default #line hidden return; case 7: this.btnFAVDeleteImage = ((System.Windows.Controls.Image)(target)); return; case 8: this.btnFAVAccept = ((System.Windows.Controls.Button)(target)); #line 52 "..\..\SelectFavorite.xaml" this.btnFAVAccept.Click += new System.Windows.RoutedEventHandler(this.btnFAVAccept_Click); #line default #line hidden return; case 9: this.btnFAVAcceptImage = ((System.Windows.Controls.Image)(target)); return; case 10: this.btnFAVClose = ((System.Windows.Controls.Button)(target)); #line 58 "..\..\SelectFavorite.xaml" this.btnFAVClose.Click += new System.Windows.RoutedEventHandler(this.btnFAVClose_Click); #line default #line hidden return; case 11: this.btnFAVCloseImage = ((System.Windows.Controls.Image)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.btnOpenLog = ((System.Windows.Controls.Button)(target)); #line 11 "..\..\..\..\Controls\Allocations\AllocationResult.xaml" this.btnOpenLog.Click += new System.Windows.RoutedEventHandler(this.btnOpenLog_Click); #line default #line hidden return; case 2: this.grdEventLog = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 3: this.clmCustomer = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 4: this.clmAccountNumber = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 5: this.clmGroup = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 6: this.clmProduct = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.showGroupCommandsIcon = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 2: this.showOperandTypeIcon = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 3: this.showToolTips = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 4: this.ApplyFilterButton = ((System.Windows.Controls.Button)(target)); #line 34 "..\..\..\Modules\FilterControl.xaml" this.ApplyFilterButton.Click += new System.Windows.RoutedEventHandler(this.ApplyFilterButtonClick); #line default #line hidden return; case 5: this.filterEditor = ((DevExpress.Xpf.Editors.Filtering.FilterControl)(target)); return; case 6: this.filterGrid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 7: this.colID = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 8: this.colProduct = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 9: this.colUnitPrice = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 10: this.colQuantity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 11: this.colTotal = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 12: #line 71 "..\..\..\Modules\FilterControl.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).FilterEditorCreated += new DevExpress.Xpf.Grid.FilterEditorEventHandler(this.TableView_FilterEditorCreated); #line default #line hidden return; } this._contentLoaded = true; }
private void KeyBindingActionCommand(object x) { HotKeyInfo hotKey = HotKeyGenerate.GenerateHotKeyByString(Convert.ToString(x)); object focusVal = this.GetFocusedValue(); switch (hotKey.modifierKey) { case ModifierKeys.Alt: switch (hotKey.key) { case Key.C: Clipboard.SetDataObject(focusVal); break; } break; case ModifierKeys.Control: TableView objTableView = (this.View as TableView); switch (hotKey.key) { case Key.M: string strColumn = string.Empty; PromptForm.ShowText("Find Column", "Find Column", ref strColumn); if (!string.IsNullOrEmpty(strColumn)) { this.Columns.ToList().ForEach(col => { if (!col.FieldName.Equals("id")) { col.Visible = false; } strColumn.Split(',').ToList().ForEach(c => { if (col.FieldName.Equals(c)) { col.Visible = true; } }); }); } break; case Key.H: int idx = this.Columns.ToList().FindIndex(c => c.FieldName.Equals(objTableView.FocusedColumn.FieldName)); DevExpress.Xpf.Grid.GridColumn column = this.Columns.ToList().ElementAtOrDefault(idx + 1); objTableView.FocusedColumn.Visible = false; if (column != null) { objTableView.FocusedColumn = column; } break; case Key.I: objTableView.ShowColumnChooser(); break; } break; case ModifierKeys.Shift: break; } }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.cboAnimationType = ((DevExpress.Xpf.Editors.ComboBoxEdit)(target)); return; case 2: this.cboPriority = ((DevExpress.Xpf.Editors.ComboBoxEdit)(target)); return; case 3: this.cboItemType = ((DevExpress.Xpf.Editors.ComboBoxEdit)(target)); return; case 4: this.grdCustomers = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 5: this.colCustomerGroup = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 6: this.colAccountNumber = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: this.colStoreName = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 9: this.txtCapacityValue = ((DevExpress.Xpf.Editors.TextEdit)(target)); return; case 10: this.btnGenerate = ((System.Windows.Controls.Button)(target)); #line 61 "..\..\..\..\Controls\StoresAndSales\AddCapacities.xaml" this.btnGenerate.Click += new System.Windows.RoutedEventHandler(this.btnGenerate_Click); #line default #line hidden return; case 11: this.btnDelete = ((System.Windows.Controls.Button)(target)); #line 62 "..\..\..\..\Controls\StoresAndSales\AddCapacities.xaml" this.btnDelete.Click += new System.Windows.RoutedEventHandler(this.btnDelete_Click); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 15 "..\..\UcSubC08.xaml" ((IeasSubC08.UserControl1)(target)).Loaded += new System.Windows.RoutedEventHandler(this.UserControl_Loaded); #line default #line hidden return; case 2: this.dataGrid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 3: this.tableView = ((DevExpress.Xpf.Grid.TableView)(target)); #line 29 "..\..\UcSubC08.xaml" this.tableView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.TableView_MouseDoubleClick); #line default #line hidden return; case 4: this.BAS_EMPNO = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 5: this.BAS_NAME = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 6: this.BAS_DEPT = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: this.BAS_POS = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 8: this.tabControl_Copy = ((System.Windows.Controls.TabControl)(target)); return; case 9: this.bas_empno = ((System.Windows.Controls.TextBox)(target)); return; case 10: this.bas_resno = ((System.Windows.Controls.TextBox)(target)); return; case 11: this.bas_sex = ((System.Windows.Controls.TextBox)(target)); return; case 12: this.bas_name = ((System.Windows.Controls.TextBox)(target)); return; case 13: this.bas_cname = ((System.Windows.Controls.TextBox)(target)); return; case 14: this.bas_ename = ((System.Windows.Controls.TextBox)(target)); return; case 15: this.bas_nat = ((System.Windows.Controls.TextBox)(target)); return; case 16: this.bas_bsks = ((System.Windows.Controls.TextBox)(target)); return; case 17: this.bas_kfta = ((System.Windows.Controls.TextBox)(target)); return; case 18: this.bas_hdpno = ((System.Windows.Controls.TextBox)(target)); return; case 19: this.bas_telno = ((System.Windows.Controls.TextBox)(target)); return; case 20: this.bas_passport = ((System.Windows.Controls.TextBox)(target)); return; case 21: this.bas_email = ((System.Windows.Controls.TextBox)(target)); return; case 22: this.bas_frq = ((System.Windows.Controls.TextBox)(target)); return; case 23: this.bas_zip = ((System.Windows.Controls.TextBox)(target)); return; case 24: this.bas_zipaddr = ((System.Windows.Controls.TextBox)(target)); return; case 25: this.bas_univ_wys = ((System.Windows.Controls.TextBox)(target)); return; case 26: this.bas_ind_wys = ((System.Windows.Controls.TextBox)(target)); return; case 27: this.bas_mil_sta = ((System.Windows.Controls.TextBox)(target)); return; case 28: this.bas_mil_no = ((System.Windows.Controls.TextBox)(target)); return; case 29: this.bas_mil_mil = ((System.Windows.Controls.TextBox)(target)); return; case 30: this.bas_mil_rnk = ((System.Windows.Controls.TextBox)(target)); return; case 31: this.bas_mil_sdate = ((System.Windows.Controls.TextBox)(target)); return; case 32: this.bas_mil_edate = ((System.Windows.Controls.TextBox)(target)); return; case 33: this.bas_ad1 = ((System.Windows.Controls.TextBox)(target)); return; case 34: this.bas_ad2 = ((System.Windows.Controls.TextBox)(target)); return; case 35: this.bas_emp_period = ((System.Windows.Controls.TextBox)(target)); return; case 36: this.bas_rmk = ((System.Windows.Controls.TextBox)(target)); return; case 37: this.bas_wsta = ((System.Windows.Controls.TextBox)(target)); return; case 38: this.bas_sts = ((System.Windows.Controls.TextBox)(target)); return; case 39: this.bas_pos = ((System.Windows.Controls.TextBox)(target)); return; case 40: this.bas_pt1 = ((System.Windows.Controls.TextBox)(target)); return; case 41: this.bas_pt2 = ((System.Windows.Controls.TextBox)(target)); return; case 42: this.bas_pt3 = ((System.Windows.Controls.TextBox)(target)); return; case 43: this.bas_dut = ((System.Windows.Controls.TextBox)(target)); return; case 44: this.bas_dept = ((System.Windows.Controls.TextBox)(target)); return; case 45: this.bas_dept2 = ((System.Windows.Controls.TextBox)(target)); return; case 46: this.bas_cpodate = ((System.Windows.Controls.TextBox)(target)); return; case 47: this.bas_cdudate = ((System.Windows.Controls.TextBox)(target)); return; case 48: this.bas_cdedate = ((System.Windows.Controls.TextBox)(target)); return; case 49: this.bas_subject = ((System.Windows.Controls.TextBox)(target)); return; case 50: this.bas_dean_dept = ((System.Windows.Controls.TextBox)(target)); return; case 51: this.bas_cont_mm = ((System.Windows.Controls.TextBox)(target)); return; case 52: this.bas_job_comnm = ((System.Windows.Controls.TextBox)(target)); return; case 53: this.bas_job_pos = ((System.Windows.Controls.TextBox)(target)); return; case 54: this.bas_job_telno = ((System.Windows.Controls.TextBox)(target)); return; case 55: this.bas_retdate = ((System.Windows.Controls.TextBox)(target)); return; case 56: this.bas_res = ((System.Windows.Controls.TextBox)(target)); return; case 57: this.bas_reidate = ((System.Windows.Controls.TextBox)(target)); return; case 58: this.bas_levdate = ((System.Windows.Controls.TextBox)(target)); return; case 59: this.bas_loa = ((System.Windows.Controls.TextBox)(target)); return; case 60: this.bas_emp_sdate = ((System.Windows.Controls.TextBox)(target)); return; case 61: this.bas_emp_edate = ((System.Windows.Controls.TextBox)(target)); return; case 62: this.bas_remp_mm = ((System.Windows.Controls.TextBox)(target)); return; case 63: this.bas_nemp_date = ((System.Windows.Controls.TextBox)(target)); return; case 64: this.bas_femp_date = ((System.Windows.Controls.TextBox)(target)); return; case 65: this.bas_cemp_date = ((System.Windows.Controls.TextBox)(target)); return; case 66: this.bas_emp_date = ((System.Windows.Controls.TextBox)(target)); return; case 67: this.bas_resdate = ((System.Windows.Controls.TextBox)(target)); return; case 68: this.tabControl = ((System.Windows.Controls.TabControl)(target)); return; case 69: #line 173 "..\..\UcSubC08.xaml" ((System.Windows.Controls.TabItem)(target)).GotFocus += new System.Windows.RoutedEventHandler(this.TabItem_GotFocus); #line default #line hidden return; case 70: this.dataGrid1 = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 71: this.tableView1 = ((DevExpress.Xpf.Grid.TableView)(target)); return; case 72: #line 186 "..\..\UcSubC08.xaml" ((System.Windows.Controls.TabItem)(target)).GotFocus += new System.Windows.RoutedEventHandler(this.TabItem_GotFocus); #line default #line hidden return; case 73: this.dataGrid2 = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 74: this.tableView2 = ((DevExpress.Xpf.Grid.TableView)(target)); return; case 75: #line 198 "..\..\UcSubC08.xaml" ((System.Windows.Controls.TabItem)(target)).GotFocus += new System.Windows.RoutedEventHandler(this.TabItem_GotFocus); #line default #line hidden return; case 76: this.dataGrid3 = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 77: this.tableView3 = ((DevExpress.Xpf.Grid.TableView)(target)); return; case 78: #line 216 "..\..\UcSubC08.xaml" ((System.Windows.Controls.TabItem)(target)).GotFocus += new System.Windows.RoutedEventHandler(this.TabItem_GotFocus); #line default #line hidden return; case 79: this.dataGrid4 = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 80: this.tableView4 = ((DevExpress.Xpf.Grid.TableView)(target)); return; case 81: #line 230 "..\..\UcSubC08.xaml" ((System.Windows.Controls.TabItem)(target)).GotFocus += new System.Windows.RoutedEventHandler(this.TabItem_GotFocus); #line default #line hidden return; case 82: this.dataGrid5 = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 83: this.tableView5 = ((DevExpress.Xpf.Grid.TableView)(target)); return; case 84: #line 251 "..\..\UcSubC08.xaml" ((System.Windows.Controls.TabItem)(target)).GotFocus += new System.Windows.RoutedEventHandler(this.TabItem_GotFocus); #line default #line hidden return; case 85: this.dataGrid6 = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 86: this.tableView6 = ((DevExpress.Xpf.Grid.TableView)(target)); return; case 87: this.textBlock = ((System.Windows.Controls.TextBlock)(target)); return; case 88: this.searchText_empno = ((System.Windows.Controls.TextBox)(target)); return; case 89: this.textBlock_Copy = ((System.Windows.Controls.TextBlock)(target)); return; case 90: this.searchText_name = ((System.Windows.Controls.TextBox)(target)); return; case 91: this.textBlock_Copy1 = ((System.Windows.Controls.TextBlock)(target)); return; case 92: this.searchText_pos = ((System.Windows.Controls.ComboBox)(target)); return; case 93: this.textBlock_Copy2 = ((System.Windows.Controls.TextBlock)(target)); return; case 94: this.searchText_dept = ((System.Windows.Controls.TextBox)(target)); return; case 95: #line 274 "..\..\UcSubC08.xaml" ((System.Windows.Controls.Image)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Seach_user_id_MouseDown); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.grdCustomerGroupAllocations = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 2: #line 29 "..\..\..\..\Controls\Animation\CustomerGroupAllocation.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).ShowingEditor += new DevExpress.Xpf.Grid.ShowingEditorEventHandler(this.TableView_ShowingEditor); #line default #line hidden #line 29 "..\..\..\..\Controls\Animation\CustomerGroupAllocation.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).CellValueChanged += new DevExpress.Xpf.Grid.CellValueChangedEventHandler(this.TableView_CellValueChanged); #line default #line hidden return; case 3: this.clmFixedAllocation = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 4: this.clmRetailUplift = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.checkShowSelectionRectangle = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 2: this.selectionModeListBox = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); #line 57 "..\..\..\Modules\MultiRowSelection.xaml" this.selectionModeListBox.SelectedIndexChanged += new System.Windows.RoutedEventHandler(this.selectionModeListBox_SelectedIndexChanged); #line default #line hidden return; case 3: this.viewsListBox = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); return; case 4: this.ProductsMultiSelectionOptionsControl = ((GridDemo.MultiSelectionOptionsControl)(target)); return; case 5: this.PriceMultiSelectionOptionsControl = ((GridDemo.MultiSelectionOptionsControl)(target)); return; case 6: this.SelectionRowsListBox = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); return; case 7: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); #line 101 "..\..\..\Modules\MultiRowSelection.xaml" this.grid.CustomSummary += new DevExpress.Data.CustomSummaryEventHandler(this.grid_CustomSummary); #line default #line hidden #line 101 "..\..\..\Modules\MultiRowSelection.xaml" this.grid.SelectionChanged += new DevExpress.Xpf.Grid.GridSelectionChangedEventHandler(this.gridView_SelectionChanged); #line default #line hidden #line 101 "..\..\..\Modules\MultiRowSelection.xaml" this.grid.CurrentItemChanged += new DevExpress.Xpf.Grid.CurrentItemChangedEventHandler(this.grid_CurrentItemChanged); #line default #line hidden return; case 8: this.colID = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 9: this.colProduct = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 10: this.colUnitPrice = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 11: this.colQuantity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 12: this.colTotal = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 13: this.defaultView = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.saveLayoutButton = ((System.Windows.Controls.Button)(target)); #line 26 "..\..\..\Modules\Serialization.xaml" this.saveLayoutButton.Click += new System.Windows.RoutedEventHandler(this.saveLayoutButton_Click); #line default #line hidden return; case 2: this.restoreLayoutButton = ((System.Windows.Controls.Button)(target)); #line 27 "..\..\..\Modules\Serialization.xaml" this.restoreLayoutButton.Click += new System.Windows.RoutedEventHandler(this.restoreLayoutButton_Click); #line default #line hidden return; case 3: this.layoutSamplesComboBox = ((DevExpress.Xpf.Editors.ComboBoxEdit)(target)); return; case 4: this.loadSampleLayoutButton = ((System.Windows.Controls.Button)(target)); #line 40 "..\..\..\Modules\Serialization.xaml" this.loadSampleLayoutButton.Click += new System.Windows.RoutedEventHandler(this.loadSampleLayoutButton_Click); #line default #line hidden return; case 5: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 6: this.colCompanyName = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: this.colContactName = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 8: this.colContactTitle = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 9: this.colCountry = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 10: this.colCity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 11: this.colAddress = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 12: this.gridView = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.grdProductDetails = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 2: this.clmItemGroup = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 3: this.clmMaterialCode = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 4: this.clmProductDescription = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 5: this.clmSortOrder = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 6: this.clmSalesArea = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: this.cboSalesArea = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 8: this.clmRRP = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 9: this.clmBDCQuantity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 10: this.clmForecastProcQuantity = ((DevExpress.Xpf.Grid.GridColumn)(target)); #line 66 "..\..\..\..\Controls\Animation\ProductDetailAnimation.xaml" this.clmForecastProcQuantity.Validate += new DevExpress.Xpf.Grid.GridCellValidationEventHandler(this.ForecastProcQuantity_Validate); #line default #line hidden return; case 11: this.clmAllocationQuantity = ((DevExpress.Xpf.Grid.GridColumn)(target)); #line 71 "..\..\..\..\Controls\Animation\ProductDetailAnimation.xaml" this.clmAllocationQuantity.Validate += new DevExpress.Xpf.Grid.GridCellValidationEventHandler(this.AllocationQuantity_Validate); #line default #line hidden return; case 12: this.clmMarketingComments = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 13: this.colAllocate = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.chkInstantFeedBack = ((DevExpress.Xpf.Editors.CheckEdit)(target)); #line 29 "..\..\..\Modules\LINQToSQLServer.xaml" this.chkInstantFeedBack.Checked += new System.Windows.RoutedEventHandler(this.ChangeInstantFeedBack); #line default #line hidden #line 29 "..\..\..\Modules\LINQToSQLServer.xaml" this.chkInstantFeedBack.Unchecked += new System.Windows.RoutedEventHandler(this.ChangeInstantFeedBack); #line default #line hidden return; case 2: this.btnConfigure = ((System.Windows.Controls.Button)(target)); #line 30 "..\..\..\Modules\LINQToSQLServer.xaml" this.btnConfigure.Click += new System.Windows.RoutedEventHandler(this.Configure); #line default #line hidden return; case 3: this.waitIndicatorList = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); #line 33 "..\..\..\Modules\LINQToSQLServer.xaml" this.waitIndicatorList.EditValueChanged += new DevExpress.Xpf.Editors.EditValueChangedEventHandler(this.CustomizeWaitIndicator); #line default #line hidden return; case 4: this.linqServerModeDataSource = ((DevExpress.Xpf.Core.ServerMode.LinqServerModeDataSource)(target)); return; case 5: this.linqInstantFeedbackDataSource = ((DevExpress.Xpf.Core.ServerMode.LinqInstantFeedbackDataSource)(target)); return; case 6: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 7: this.colid = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 8: this.colFrom = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 9: this.colSubject = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 10: this.colSent = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 11: this.colSize = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 12: this.colHasAttachment = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 13: this.colDaysActive = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 14: this.view = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.btnIncludeAll = ((System.Windows.Controls.Button)(target)); return; case 2: this.btnInclude = ((System.Windows.Controls.Button)(target)); #line 24 "..\..\..\..\Controls\Animation\CustomerGroupAnimation.xaml" this.btnInclude.Click += new System.Windows.RoutedEventHandler(this.btnInclude_Click); #line default #line hidden return; case 3: this.btnRemove = ((System.Windows.Controls.Button)(target)); #line 25 "..\..\..\..\Controls\Animation\CustomerGroupAnimation.xaml" this.btnRemove.Click += new System.Windows.RoutedEventHandler(this.btnRemove_Click); #line default #line hidden return; case 4: this.btnRemoveAll = ((System.Windows.Controls.Button)(target)); return; case 5: this.grdCustomerGroups = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 6: this.clmCountry = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: #line 37 "..\..\..\..\Controls\Animation\CustomerGroupAnimation.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).SelectionChanged += new DevExpress.Xpf.Grid.GridSelectionChangedEventHandler(this.grdCustomerGroups_SelectionChanged); #line default #line hidden return; case 8: this.grdAnimationCustomerGroups = ((DevExpress.Xpf.Grid.GridControl)(target)); #line 40 "..\..\..\..\Controls\Animation\CustomerGroupAnimation.xaml" this.grdAnimationCustomerGroups.CustomUnboundColumnData += new DevExpress.Xpf.Grid.GridColumnDataEventHandler(this.grdAnimationCustomerGroups_CustomUnboundColumnData); #line default #line hidden return; case 9: this.colIncludeInAllocation = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 10: this.colRetailerType = ((DevExpress.Xpf.Grid.GridColumn)(target)); #line 50 "..\..\..\..\Controls\Animation\CustomerGroupAnimation.xaml" this.colRetailerType.Validate += new DevExpress.Xpf.Grid.GridCellValidationEventHandler(this.Column_Validate); #line default #line hidden return; case 11: this.cboRetailerType = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 12: this.colCounterDate = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 13: this.colPLVDeliveryDate = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 14: this.colPLVComponentDate = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 15: this.colStockDate = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 16: this.colSAPDespCode = ((DevExpress.Xpf.Grid.GridColumn)(target)); #line 80 "..\..\..\..\Controls\Animation\CustomerGroupAnimation.xaml" this.colSAPDespCode.Validate += new DevExpress.Xpf.Grid.GridCellValidationEventHandler(this.Column_Validate); #line default #line hidden return; case 17: #line 85 "..\..\..\..\Controls\Animation\CustomerGroupAnimation.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).SelectionChanged += new DevExpress.Xpf.Grid.GridSelectionChangedEventHandler(this.grdAnimationCustomerGroups_SelectionChanged); #line default #line hidden #line 85 "..\..\..\..\Controls\Animation\CustomerGroupAnimation.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.TableView_PreviewKeyDown); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.lblTitle = ((System.Windows.Controls.Label)(target)); return; case 2: this.lblStoreCode = ((System.Windows.Controls.Label)(target)); return; case 3: this.lblStoreName = ((System.Windows.Controls.Label)(target)); return; case 4: this.lblBenchmarkStore = ((System.Windows.Controls.Label)(target)); return; case 5: this.lblBenchmarkStoreName = ((System.Windows.Controls.Label)(target)); return; case 6: this.txtStoreCode = ((System.Windows.Controls.TextBox)(target)); return; case 7: this.txtStoreName = ((System.Windows.Controls.TextBox)(target)); return; case 8: this.chkBenchmark = ((System.Windows.Controls.CheckBox)(target)); #line 56 "..\..\..\..\Controls\StoresAndSales\AddSales.xaml" this.chkBenchmark.Checked += new System.Windows.RoutedEventHandler(this.chkBenchmark_Checked); #line default #line hidden #line 56 "..\..\..\..\Controls\StoresAndSales\AddSales.xaml" this.chkBenchmark.Unchecked += new System.Windows.RoutedEventHandler(this.chkBenchmark_Unchecked); #line default #line hidden return; case 9: this.cboBenchmarkStore = ((System.Windows.Controls.ComboBox)(target)); #line 57 "..\..\..\..\Controls\StoresAndSales\AddSales.xaml" this.cboBenchmarkStore.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cboBenchmarkStore_SelectionChanged); #line default #line hidden return; case 10: this.txtBenchmarkStoreName = ((System.Windows.Controls.TextBox)(target)); return; case 11: this.grdBrandAxes = ((DevExpress.Xpf.Grid.GridControl)(target)); #line 60 "..\..\..\..\Controls\StoresAndSales\AddSales.xaml" this.grdBrandAxes.CustomUnboundColumnData += new DevExpress.Xpf.Grid.GridColumnDataEventHandler(this.grdBrandAxes_CustomUnboundColumnData); #line default #line hidden return; case 12: this.clmBrand = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 13: this.clmSignature = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 15: this.btnAddBrandAxes = ((System.Windows.Controls.Button)(target)); #line 88 "..\..\..\..\Controls\StoresAndSales\AddSales.xaml" this.btnAddBrandAxes.Click += new System.Windows.RoutedEventHandler(this.btnAddBrandAxes_Click); #line default #line hidden return; case 16: this.grdRetailSales = ((DevExpress.Xpf.Grid.GridControl)(target)); #line 90 "..\..\..\..\Controls\StoresAndSales\AddSales.xaml" this.grdRetailSales.CustomUnboundColumnData += new DevExpress.Xpf.Grid.GridColumnDataEventHandler(this.grdRetailSales_CustomUnboundColumnData); #line default #line hidden return; case 18: this.btnSetCapacity = ((System.Windows.Controls.Button)(target)); #line 123 "..\..\..\..\Controls\StoresAndSales\AddSales.xaml" this.btnSetCapacity.Click += new System.Windows.RoutedEventHandler(this.btnSetCapacity_Click); #line default #line hidden return; case 19: this.btnSaveSales = ((System.Windows.Controls.Button)(target)); #line 124 "..\..\..\..\Controls\StoresAndSales\AddSales.xaml" this.btnSaveSales.Click += new System.Windows.RoutedEventHandler(this.btnSaveSales_Click); #line default #line hidden return; case 20: this.btnClose = ((System.Windows.Controls.Button)(target)); #line 125 "..\..\..\..\Controls\StoresAndSales\AddSales.xaml" this.btnClose.Click += new System.Windows.RoutedEventHandler(this.btnClose_Click); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.userControl = ((BluePrints.Views.PROJECTDashboardCollectionView)(target)); return; case 2: this.biCheckUnits = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 3: this.biCheckCosts = ((DevExpress.Xpf.Bars.BarCheckItem)(target)); return; case 4: this.LayoutGroupGrid = ((DevExpress.Xpf.LayoutControl.LayoutGroup)(target)); return; case 5: this.gridControl = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 6: this.bandGeneral = ((DevExpress.Xpf.Grid.GridControlBand)(target)); return; case 7: this.colCumulativeBudget = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 8: this.colCumulativeBudgetText = ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)); return; case 9: this.bandCumulative = ((DevExpress.Xpf.Grid.GridControlBand)(target)); return; case 10: this.colCumulativeEarnedPercentage = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 11: this.colCumulativePlanned = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 12: this.colCumulativePlannedText = ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)); return; case 13: this.colCumulativeEarned = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 14: this.colCumulativeEarnedText = ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)); return; case 15: this.colCumulativeBurned = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 16: this.colCumulativeBurnedText = ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)); return; case 17: this.colCumulativeActual = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 18: this.colCumulativeActualText = ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)); return; case 19: this.bandPeriod = ((DevExpress.Xpf.Grid.GridControlBand)(target)); return; case 20: this.colPeriodEarnedPercentage = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 21: this.colPeriodPlanned = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 22: this.colPeriodPlannedText = ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)); return; case 23: this.colPeriodEarned = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 24: this.colPeriodEarnedText = ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)); return; case 25: this.colPeriodBurned = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 26: this.colPeriodBurnedText = ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)); return; case 27: this.colPeriodActual = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 28: this.colPeriodActualText = ((DevExpress.Xpf.Editors.Settings.TextEditSettings)(target)); return; case 29: this.bandPerformance = ((DevExpress.Xpf.Grid.GridControlBand)(target)); return; case 30: this.colInvisibleSummary_CumulativePlannedCost = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 31: this.colInvisibleSummary_CumulativeEarnedCost = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 32: this.colInvisibleSummary_CumulativeBurnedCost = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 33: this.colInvisibleSummary_CumulativeActualCost = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 34: this.colGrossProfit = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 35: this.colEfficiencyRatio = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 36: this.colProgressRatio = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 37: this.groupSummaryBudgeted = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 38: this.groupSummaryCumulativeEarnedPercentage = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 39: this.groupSummaryPeriodEarnedPercentage = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 40: this.groupSummaryGrossProfit = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 41: this.groupSummaryEfficiencyRatio = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 42: this.groupSummaryProgressRatio = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 43: this.groupSummaryCumulativePlanned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 44: this.groupSummaryCumulativeEarned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 45: this.groupSummaryCumulativeBurned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 46: this.groupSummaryCumulativeActual = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 47: this.groupSummaryPeriodPlanned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 48: this.groupSummaryPeriodEarned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 49: this.groupSummaryPeriodBurned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 50: this.groupSummaryPeriodActual = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 51: this.totalSummaryBudgeted = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 52: this.totalSummaryCumulativeEarnedPercentage = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 53: this.totalSummaryPeriodEarnedPercentage = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 54: this.totalSummaryGrossProfit = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 55: this.totalSummaryEfficiencyRatio = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 56: this.totalSummaryProgressRatio = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 57: this.totalSummaryCumulativePlanned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 58: this.totalSummaryCumulativeEarned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 59: this.totalSummaryCumulativeBurned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 60: this.totalSummaryCumulativeActual = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 61: this.totalSummaryPeriodPlanned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 62: this.totalSummaryPeriodEarned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 63: this.totalSummaryPeriodBurned = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 64: this.totalSummaryPeriodActual = ((DevExpress.Xpf.Grid.GridSummaryItem)(target)); return; case 65: this.tableView = ((DevExpress.Xpf.Grid.TableView)(target)); return; case 66: this.LayoutGroupChart = ((DevExpress.Xpf.LayoutControl.LayoutGroup)(target)); return; case 67: this.chartSCurve = ((DevExpress.Xpf.Charts.ChartControl)(target)); return; case 68: this.primaryAxisY = ((DevExpress.Xpf.Charts.AxisY2D)(target)); return; case 69: this.secondaryAxisY = ((DevExpress.Xpf.Charts.SecondaryAxisY2D)(target)); return; case 70: this.barSeriesOriginal = ((DevExpress.Xpf.Charts.BarSideBySideSeries2D)(target)); return; case 71: this.barSeriesPlanned = ((DevExpress.Xpf.Charts.BarSideBySideSeries2D)(target)); return; case 72: this.barSeriesEarned = ((DevExpress.Xpf.Charts.BarSideBySideSeries2D)(target)); return; case 73: this.barSeriesRemainingPlanned = ((DevExpress.Xpf.Charts.BarSideBySideSeries2D)(target)); return; case 74: this.barSeriesBurned = ((DevExpress.Xpf.Charts.BarSideBySideSeries2D)(target)); return; case 75: this.barSeriesActual = ((DevExpress.Xpf.Charts.BarSideBySideSeries2D)(target)); return; case 76: this.lineSeriesOriginal = ((DevExpress.Xpf.Charts.LineSeries2D)(target)); return; case 77: this.lineSeriesPlanned = ((DevExpress.Xpf.Charts.LineSeries2D)(target)); return; case 78: this.lineSeriesRemainingPlanned = ((DevExpress.Xpf.Charts.LineSeries2D)(target)); return; case 79: this.lineSeriesEarned = ((DevExpress.Xpf.Charts.LineSeries2D)(target)); return; case 80: this.lineSeriesBurned = ((DevExpress.Xpf.Charts.LineSeries2D)(target)); return; case 81: this.lineSeriesActual = ((DevExpress.Xpf.Charts.LineSeries2D)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.bbAdd = ((DevExpress.Xpf.Bars.BarButtonItem)(target)); #line 11 "..\..\MainWindow.xaml" this.bbAdd.ItemClick += new DevExpress.Xpf.Bars.ItemClickEventHandler(this.bbAdd_ItemClick); #line default #line hidden return; case 2: this.bbDelete = ((DevExpress.Xpf.Bars.BarButtonItem)(target)); #line 12 "..\..\MainWindow.xaml" this.bbDelete.ItemClick += new DevExpress.Xpf.Bars.ItemClickEventHandler(this.bbDelete_ItemClick); #line default #line hidden return; case 3: this.bbRefresh = ((DevExpress.Xpf.Bars.BarButtonItem)(target)); #line 13 "..\..\MainWindow.xaml" this.bbRefresh.ItemClick += new DevExpress.Xpf.Bars.ItemClickEventHandler(this.bbRefresh_ItemClick); #line default #line hidden return; case 4: this.tbLabor = ((DevExpress.Xpf.Bars.Bar)(target)); return; case 5: this.grdcAdminData = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 6: this.grdvAdminData = ((DevExpress.Xpf.Grid.TableView)(target)); #line 28 "..\..\MainWindow.xaml" this.grdvAdminData.CellValueChanged += new DevExpress.Xpf.Grid.CellValueChangedEventHandler(this.grdvAdminData_CellValueChanged); #line default #line hidden return; case 7: this.gcID = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 8: this.gcName = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 9: this.gcSlNo = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 10: this.gcAge = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 11: this.gcAddress = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.btnDownload = ((System.Windows.Controls.Button)(target)); return; case 2: this.gridControl = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 3: this.colFileName = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 4: this.colFileSize = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 5: this.colDownloadSize = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 6: this.colPercent = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: this.tableView = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.rbExrtaLarge = ((System.Windows.Controls.RadioButton)(target)); return; case 2: this.rbLarge = ((System.Windows.Controls.RadioButton)(target)); return; case 3: this.rbMedium = ((System.Windows.Controls.RadioButton)(target)); return; case 4: this.rbGroupName = ((System.Windows.Controls.RadioButton)(target)); return; case 5: this.rbGroupType = ((System.Windows.Controls.RadioButton)(target)); return; case 6: this.rbGroupNone = ((System.Windows.Controls.RadioButton)(target)); return; case 7: this.bBack = ((DevExpress.Xpf.Bars.BarButtonItem)(target)); return; case 8: this.bForward = ((DevExpress.Xpf.Bars.BarButtonItem)(target)); return; case 9: this.bUp = ((DevExpress.Xpf.Bars.BarButtonItem)(target)); return; case 10: this.tbPath = ((DevExpress.Xpf.Editors.TextEdit)(target)); return; case 11: this.tbSearch = ((DevExpress.Xpf.Editors.SearchControl)(target)); return; case 12: this.Grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 13: this.columnName = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 14: this.columnType = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 15: this.columnNameFirst = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 16: this.View = ((DevExpress.Xpf.Grid.CardView)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.buttons = ((System.Windows.Controls.Grid)(target)); return; case 2: this.btnCreateProduct = ((System.Windows.Controls.Button)(target)); #line 38 "..\..\..\..\Controls\Animation\ProductAnimation.xaml" this.btnCreateProduct.Click += new System.Windows.RoutedEventHandler(this.btnCreateProduct_Click); #line default #line hidden return; case 3: this.btnViewProducts = ((System.Windows.Controls.Button)(target)); #line 39 "..\..\..\..\Controls\Animation\ProductAnimation.xaml" this.btnViewProducts.Click += new System.Windows.RoutedEventHandler(this.btnViewProducts_Click); #line default #line hidden return; case 4: this.cboView = ((DevExpress.Xpf.Editors.ComboBoxEdit)(target)); return; case 5: this.grdProduct = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 6: this.clmItemGroup = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 7: this.cboItemGroups = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 8: this.clmMaterialCode = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 9: this.cboMaterialCodes = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 10: this.clmProductDescription = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 11: this.cboDescriptions = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 12: this.clmSortOrder = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 13: this.clmInternationCode = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 14: this.clmBDC = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 15: this.clmEan = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 16: this.clmStatus = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 17: this.clmSource = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 18: this.clmForOrdering = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 19: this.clmItemType = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 20: this.cboItemTypes = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 21: this.clmSignature = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 22: this.cboSignature = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 23: this.clmBrandAxe = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 24: this.cboBrandAxes = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 25: this.clmCategory = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 26: this.cboCategories = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 27: this.clmOnCas = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 28: this.clmNormalMultiple = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 29: this.cboNormalMultiple = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 30: this.clmWarehouseMultiple = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 31: this.cboWarehouseMultiple = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 32: this.clmTotalCapacity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 33: this.clmTotalBDCQuantity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 34: this.clmTotalForecast = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 35: this.clmTotalAllocation = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 36: this.clmAllocationQuantityUK = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 37: this.clmAllocationQuantityROI = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 38: this.clmTotalCostValue = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 39: this.clmUKList = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 40: this.clmROIList = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 41: this.clmUKRrp = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 42: this.clmROIRrp = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 43: this.clmMarketingComments = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 44: this.clmProcurementType = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 45: this.clmMadMonth = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 46: this.cboMadMonth = ((DevExpress.Xpf.Editors.Settings.ComboBoxEditSettings)(target)); return; case 47: this.clmStockRisk = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 48: this.clmDeliveryRisk = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 49: this.clmActiveAnimations = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 50: this.clmDuplicateProduct = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 51: this.clmTotalAnimationQuantity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 52: this.clmInTransit = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 53: this.clmConfirmedQuantity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 54: this.clmReliquat = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 55: this.clmMonth1 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 56: this.clmMonth2 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 57: this.clmMonth3 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 58: this.clmMonth4 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 59: this.clmMonth5 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 60: this.clmMonth6 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 61: this.clmMonth7 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 62: this.clmMonth8 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 63: this.clmMonth9 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 64: this.clmMonth10 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 65: this.clmMonth11 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 66: this.clmMonth12 = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 67: this.clmRecievedToDate = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 68: this.clmStock = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 69: this.clmPipe = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 70: this.clmStockLessPipe = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 71: this.clmLogisticsComments = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 72: this.clmAllocationQuantity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 73: #line 280 "..\..\..\..\Controls\Animation\ProductAnimation.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).CellValueChanged += new DevExpress.Xpf.Grid.CellValueChangedEventHandler(this.TableView_CellValueChanged); #line default #line hidden #line 280 "..\..\..\..\Controls\Animation\ProductAnimation.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).InitNewRow += new DevExpress.Xpf.Grid.InitNewRowEventHandler(this.TableView_InitNewRow); #line default #line hidden #line 280 "..\..\..\..\Controls\Animation\ProductAnimation.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).ValidateRow += new DevExpress.Xpf.Grid.GridRowValidationEventHandler(this.TableView_ValidateRow); #line default #line hidden #line 280 "..\..\..\..\Controls\Animation\ProductAnimation.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).CellValueChanging += new DevExpress.Xpf.Grid.CellValueChangedEventHandler(this.TableView_CellValueChanging); #line default #line hidden #line 280 "..\..\..\..\Controls\Animation\ProductAnimation.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).RowCanceled += new DevExpress.Xpf.Grid.RowEventHandler(this.TableView_RowCanceled); #line default #line hidden #line 280 "..\..\..\..\Controls\Animation\ProductAnimation.xaml" ((DevExpress.Xpf.Grid.TableView)(target)).ShownEditor += new DevExpress.Xpf.Grid.EditorEventHandler(this.TableView_ShownEditor); #line default #line hidden return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.allowFixedGroupsCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 2: this.allowCascadeUpdateCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 3: this.allowPerPixelScrollingCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 4: this.allowScrollingAnimation = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 5: this.autoWidthCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 6: this.allowSortingCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 7: this.allowGroupingCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 8: this.allowMovingCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 9: this.allowResizingCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 10: this.allowBestFitCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 11: this.showIndicatorCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 12: this.useEvenRowBackground = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 13: this.scrollBarMode = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 14: this.showDataNavigator = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 15: this.showVerticalLinesCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 16: this.showHorizontalLinesCheckEdit = ((DevExpress.Xpf.Editors.CheckEdit)(target)); return; case 17: this.NavigationStyleComboBox = ((DevExpress.Xpf.Editors.ComboBoxEdit)(target)); return; case 18: this.lbSummary = ((DevExpress.Xpf.Editors.ListBoxEdit)(target)); #line 66 "..\..\..\Modules\StandardTableView.xaml" this.lbSummary.SelectedIndexChanged += new System.Windows.RoutedEventHandler(this.lbSummary_SelectedIndexChanged); #line default #line hidden return; case 19: this.grid = ((DevExpress.Xpf.Grid.GridControl)(target)); return; case 20: this.colID = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 21: this.colCountry = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 22: this.colCity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 23: this.colUnitPrice = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 24: this.colQuantity = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 25: this.colTotal = ((DevExpress.Xpf.Grid.GridColumn)(target)); return; case 26: this.view = ((DevExpress.Xpf.Grid.TableView)(target)); return; } this._contentLoaded = true; }