• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# XtraGrid.StyleFormatCondition类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中DevExpress.XtraGrid.StyleFormatCondition的典型用法代码示例。如果您正苦于以下问题:C# DevExpress.XtraGrid.StyleFormatCondition类的具体用法?C# DevExpress.XtraGrid.StyleFormatCondition怎么用?C# DevExpress.XtraGrid.StyleFormatCondition使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



DevExpress.XtraGrid.StyleFormatCondition类属于命名空间,在下文中一共展示了DevExpress.XtraGrid.StyleFormatCondition类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: Initialize

        private void Initialize()
        {
            fileList = new List<SelectedFile>();
            gridSeletedFiles.DataBindings.Clear();
            gridSeletedFiles.DataSource = fileList;
            wwpStepOne.AllowNext = false;
            btnBrowseFile.Properties.Buttons[1].Enabled = false;
            dsMainData = new DataSet();

            DevExpress.XtraGrid.StyleFormatCondition styleInsertFormat = new DevExpress.XtraGrid.StyleFormatCondition();
            DevExpress.XtraGrid.StyleFormatCondition styleUpdateFormat = new DevExpress.XtraGrid.StyleFormatCondition();
            DevExpress.XtraGrid.StyleFormatCondition styleNormalFormat = new DevExpress.XtraGrid.StyleFormatCondition();
            #region [Inserted Style Format]
            styleInsertFormat.Appearance.BackColor = System.Drawing.Color.Green;
            styleInsertFormat.Appearance.BorderColor = Color.Black;
            styleInsertFormat.Appearance.ForeColor = Color.White;
            styleInsertFormat.Appearance.Options.UseBackColor = true;
            styleInsertFormat.Appearance.Options.UseBorderColor = true;
            styleInsertFormat.Appearance.Options.UseForeColor = true;
            styleInsertFormat.Column = grvMainData.Columns["Return Message"];
            styleInsertFormat.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
            styleInsertFormat.Value1 = "Inserted";
            styleInsertFormat.Value2 = "Đã thêm mới";
            styleInsertFormat.ApplyToRow = true;
            #endregion
            #region [Updated Style Format]
            styleUpdateFormat.Appearance.BackColor = Color.Yellow;
            styleUpdateFormat.Appearance.BorderColor = Color.Black;
            styleUpdateFormat.Appearance.ForeColor = Color.Black;
            styleUpdateFormat.Appearance.Options.UseBackColor = true;
            styleUpdateFormat.Appearance.Options.UseBorderColor = true;
            styleUpdateFormat.Appearance.Options.UseForeColor = true;
            styleUpdateFormat.Column = grvMainData.Columns["Return Message"];
            styleUpdateFormat.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
            styleUpdateFormat.Value1 = ConfigEngine.Language.Equals("vi") ? "Đã cập nhật" : "Updated";
            styleUpdateFormat.ApplyToRow = true;
            #endregion
            grvMainData.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] { styleInsertFormat, styleUpdateFormat });
        }
开发者ID:penguinsoft,项目名称:iPOS,代码行数:39,代码来源:uc_ImportExcel.cs


示例2: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            this.colValue4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.btnRemote = new DevExpress.XtraEditors.SimpleButton();
            this.btnPHY = new DevExpress.XtraEditors.SimpleButton();
            this.btnConnect = new DevExpress.XtraEditors.SimpleButton();
            this.btnDisconnect = new DevExpress.XtraEditors.SimpleButton();
            this.Waiting = new DevExpress.XtraSplashScreen.SplashScreenManager(this, typeof(global::HFC.frmWaiting), true, true);
            this.gridItem = new DevExpress.XtraGrid.GridControl();
            this.gridItemDetail = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colDatetime = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colMacAdress = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCustomerName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCustomerAddress = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colWard = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCustomerTelephone = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colIpPrivate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colIpPublic1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colIpPublic2 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colValue1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colValue2 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colValue3 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCurrentUS = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCurrentDS = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colLocation = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colStatus = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ItemCheckStatus = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colDS = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colUS = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            this.btnLoadAll = new DevExpress.XtraEditors.SimpleButton();
            this.checkInsertData = new DevExpress.XtraEditors.CheckEdit();
            this.btnStart = new DevExpress.XtraEditors.SimpleButton();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.txtTimeRe = new DevExpress.XtraEditors.TextEdit();
            this.lblTime = new DevExpress.XtraEditors.LabelControl();
            this.timerRepeat = new System.Windows.Forms.Timer(this.components);
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.btnStartFor10P = new DevExpress.XtraEditors.SimpleButton();
            this.timer10 = new System.Windows.Forms.Timer(this.components);
            this.checkBW = new DevExpress.XtraEditors.CheckEdit();
            this.btnSNR = new DevExpress.XtraEditors.SimpleButton();
            this.btnLoadIP = new DevExpress.XtraEditors.SimpleButton();
            this.btnIPPublic = new DevExpress.XtraEditors.SimpleButton();
            this.btnTraffic = new DevExpress.XtraEditors.SimpleButton();
            this.checkTraffic = new DevExpress.XtraEditors.CheckEdit();
            this.timer30 = new System.Windows.Forms.Timer(this.components);
            this.checkMaps = new DevExpress.XtraEditors.CheckEdit();
            this.timerMaps = new System.Windows.Forms.Timer(this.components);
            this.btnMaps = new DevExpress.XtraEditors.SimpleButton();
            this.btnDeviceStatus = new DevExpress.XtraEditors.SimpleButton();
            this.btnDHCP = new DevExpress.XtraEditors.SimpleButton();
            this.btnGetSNRLow = new DevExpress.XtraEditors.SimpleButton();
            ((System.ComponentModel.ISupportInitialize)(this.gridItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridItemDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemCheckStatus)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkInsertData.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtTimeRe.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.checkBW.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkTraffic.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkMaps.Properties)).BeginInit();
            this.SuspendLayout();
            // 
            // colValue4
            // 
            this.colValue4.Caption = "US SNR";
            this.colValue4.FieldName = "Value4";
            this.colValue4.Name = "colValue4";
            this.colValue4.Visible = true;
            this.colValue4.VisibleIndex = 7;
            this.colValue4.Width = 61;
            // 
            // btnRemote
            // 
            this.btnRemote.Location = new System.Drawing.Point(78, 10);
            this.btnRemote.Name = "btnRemote";
            this.btnRemote.Size = new System.Drawing.Size(93, 35);
            this.btnRemote.TabIndex = 0;
            this.btnRemote.Text = "Thông số Remote";
            this.btnRemote.Click += new System.EventHandler(this.btnRemote_Click);
            // 
            // btnPHY
            // 
            this.btnPHY.Location = new System.Drawing.Point(171, 10);
            this.btnPHY.Name = "btnPHY";
            this.btnPHY.Size = new System.Drawing.Size(79, 35);
            this.btnPHY.TabIndex = 0;
            this.btnPHY.Text = "Thông số PHY";
            this.btnPHY.Click += new System.EventHandler(this.btnPHY_Click);
            // 
//.........这里部分代码省略.........
开发者ID:tayeumi,项目名称:HFC,代码行数:101,代码来源:frmSignalRequest.Designer.cs


示例3: InitializeComponent

        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(uc_event_01));
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
            this.colEnabled = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.btnMetComplementario = new DevExpress.XtraEditors.SimpleButton();
            this.btnDiagnosis = new DevExpress.XtraEditors.SimpleButton();
            this.txtEvolution = new DevExpress.XtraEditors.MemoEdit();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
            this.cmbTipoConsulta = new DevExpress.XtraEditors.LookUpEdit();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.txtMotivo = new DevExpress.XtraEditors.MemoEdit();
            this.parametroBEBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.pMOFileListBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.cEI10ComboBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.btnAddMedicamento = new DevExpress.XtraEditors.SimpleButton();
            this.gridControl_Medicaments = new DevExpress.XtraGrid.GridControl();
            this.patientMedicamentViewListBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.gridView_Medicaments = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colCreatedDate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colStatusDescription = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colMedicamentName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colMedicamentPresentation = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colApellidoNombre = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colStatus = new DevExpress.XtraGrid.Columns.GridColumn();
            this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
            this.tabPage_Farmacolog = new DevExpress.XtraTab.XtraTabPage();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.btnQuitarMedicamento = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
            this.cmbPMO_Quirurgico = new DevExpress.XtraEditors.SearchLookUpEdit();
            this.pMOFileListBindingSource_Quirurgico = new System.Windows.Forms.BindingSource(this.components);
            this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.m_quitar = new System.Windows.Forms.ToolStripMenuItem();
            this.tab_Control = new DevExpress.XtraTab.XtraTabControl();
            this.tabPage_Tratamiento = new DevExpress.XtraTab.XtraTabPage();
            this.tabPage_Diagnostico = new DevExpress.XtraTab.XtraTabPage();
            this.uC_EventDetailsGrid_Diagnosis = new Health.Front.Events.UC_EventDetailsGrid();
            this.tabPage_MetComplementario = new DevExpress.XtraTab.XtraTabPage();
            this.uC_EventDetailsGrid_MetComplementario = new Health.Front.Events.UC_EventDetailsGrid();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtEvolution.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbTipoConsulta.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtMotivo.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.parametroBEBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pMOFileListBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cEI10ComboBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_Medicaments)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.patientMedicamentViewListBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView_Medicaments)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
            this.xtraTabControl1.SuspendLayout();
            this.tabPage_Farmacolog.SuspendLayout();
            this.xtraTabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPMO_Quirurgico.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pMOFileListBindingSource_Quirurgico)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            this.contextMenuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tab_Control)).BeginInit();
            this.tab_Control.SuspendLayout();
            this.tabPage_Tratamiento.SuspendLayout();
            this.tabPage_Diagnostico.SuspendLayout();
            this.tabPage_MetComplementario.SuspendLayout();
            this.SuspendLayout();
            // 
            // lblTitle
            // 
            this.lblTitle.Appearance.BackColor = System.Drawing.Color.White;
            this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 14F, System.Drawing.FontStyle.Bold);
            this.lblTitle.Appearance.ForeColor = System.Drawing.Color.LightSlateGray;
            this.lblTitle.Size = new System.Drawing.Size(962, 41);
            this.lblTitle.Text = "Atencion Médica";
            // 
            // colEnabled
            // 
            this.colEnabled.FieldName = "Enabled";
            this.colEnabled.Name = "colEnabled";
            // 
            // repositoryItemImageComboBox1
            // 
            this.repositoryItemImageComboBox1.AutoHeight = false;
            this.repositoryItemImageComboBox1.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
            new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Permanente", true, 1),
//.........这里部分代码省略.........
开发者ID:spzenk,项目名称:sfdocsamples,代码行数:101,代码来源:uc_event_01.Designer.cs


示例4: InitializeComponent

        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            this.colFechaPlaneada = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl1 = new DevExpress.XtraGrid.GridControl();
            this.planVacunacionFullViewListBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colGrupoVacuna = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colNombreVacuna = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colFechaColocación = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
            this.colNombreProfesionalQueColoco = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.planVacunacionFullViewListBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
            this.SuspendLayout();
            // 
            // lblTitle
            // 
            this.lblTitle.Appearance.BackColor = System.Drawing.Color.White;
            this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
            this.lblTitle.Size = new System.Drawing.Size(1204, 41);
            this.lblTitle.Text = "Plan de vacunacion";
            // 
            // colFechaPlaneada
            // 
            this.colFechaPlaneada.AppearanceCell.BackColor = System.Drawing.Color.OldLace;
            this.colFechaPlaneada.AppearanceCell.Options.UseBackColor = true;
            this.colFechaPlaneada.FieldName = "FechaPlaneada";
            this.colFechaPlaneada.Name = "colFechaPlaneada";
            this.colFechaPlaneada.OptionsColumn.AllowEdit = false;
            this.colFechaPlaneada.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.colFechaPlaneada.OptionsColumn.AllowMove = false;
            this.colFechaPlaneada.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.colFechaPlaneada.OptionsColumn.ReadOnly = true;
            this.colFechaPlaneada.Visible = true;
            this.colFechaPlaneada.VisibleIndex = 2;
            this.colFechaPlaneada.Width = 205;
            // 
            // gridControl1
            // 
            this.gridControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.gridControl1.DataSource = this.planVacunacionFullViewListBindingSource;
            this.gridControl1.Location = new System.Drawing.Point(3, 48);
            this.gridControl1.MainView = this.gridView1;
            this.gridControl1.Name = "gridControl1";
            this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit2,
            this.repositoryItemMemoEdit1,
            this.repositoryItemDateEdit1});
            this.gridControl1.Size = new System.Drawing.Size(1182, 592);
            this.gridControl1.TabIndex = 6;
            this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView1});
            // 
            // planVacunacionFullViewListBindingSource
            // 
            this.planVacunacionFullViewListBindingSource.DataSource = typeof(Health.BE.PlanVacunacion_FullViewList);
            // 
            // gridView1
            // 
            this.gridView1.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 7.8F, System.Drawing.FontStyle.Bold);
            this.gridView1.Appearance.GroupRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.gridView1.Appearance.GroupRow.Options.UseFont = true;
            this.gridView1.Appearance.GroupRow.Options.UseForeColor = true;
            this.gridView1.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 7.8F, System.Drawing.FontStyle.Bold);
            this.gridView1.Appearance.HeaderPanel.Options.UseFont = true;
            this.gridView1.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridView1.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridView1.Appearance.HeaderPanel.TextOptions.Trimming = DevExpress.Utils.Trimming.EllipsisWord;
            this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
            this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colGrupoVacuna,
            this.colNombreVacuna,
            this.colFechaPlaneada,
            this.colFechaColocación,
            this.gridColumn1,
            this.colNombreProfesionalQueColoco});
            this.gridView1.DetailVerticalIndent = 5;
            this.gridView1.FixedLineWidth = 1;
            styleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            styleFormatCondition1.Appearance.Options.UseForeColor = true;
            styleFormatCondition1.Column = this.colFechaPlaneada;
            styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
            styleFormatCondition1.Expression = "[FechaPlaneada_Alterada]== 1";
//.........这里部分代码省略.........
开发者ID:spzenk,项目名称:sfdocsamples,代码行数:101,代码来源:uc_VAcunas.Designer.cs


示例5: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TxtFileRead));
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
            this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.gridControl1 = new DevExpress.XtraGrid.GridControl();
            this.pHYINVDATABindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.ledgers1 = new VIRETAILENTITIES.Ledgers();
            this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            this.iTEMMASTBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.panel1 = new System.Windows.Forms.Panel();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.bar3 = new DevExpress.XtraBars.Bar();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
            this.txttime = new DevExpress.XtraBars.BarStaticItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.txtclosingperiod = new DevExpress.XtraEditors.TextEdit();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.txtinventory = new DevExpress.XtraEditors.TextEdit();
            this.txtmachineno = new DevExpress.XtraEditors.TextEdit();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.txtfile = new DevExpress.XtraEditors.TextEdit();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.gridControl2 = new DevExpress.XtraGrid.GridControl();
            this.pHYINVDATABindingSource1 = new System.Windows.Forms.BindingSource(this.components);
            this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.label1 = new System.Windows.Forms.Label();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pHYINVDATABindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ledgers1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.iTEMMASTBindingSource)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtclosingperiod.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtinventory.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtmachineno.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtfile.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pHYINVDATABindingSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
            this.SuspendLayout();
            // 
            // gridColumn5
            // 
            this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn5.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn5.Caption = "gridColumn5";
            this.gridColumn5.FieldName = "HasError";
            this.gridColumn5.Name = "gridColumn5";
            this.gridColumn5.OptionsColumn.AllowEdit = false;
            this.gridColumn5.OptionsColumn.ReadOnly = true;
            // 
            // gridColumn11
            // 
            this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn11.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            this.gridColumn11.Caption = "gridColumn5";
            this.gridColumn11.FieldName = "HasError";
//.........这里部分代码省略.........
开发者ID:rehman922,项目名称:VIRETAIL,代码行数:101,代码来源:TxtFileRead.Designer.cs


示例6: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(f0000_gd_dat_hang_gd_log_dat_hang));
            this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.m_grc_gd_dat_hang_gd_log_dat_hang = new DevExpress.XtraGrid.GridControl();
            this.m_grv_gd_dat_hang_gd_log_dat_hang = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.MA_DON_HANG = new DevExpress.XtraGrid.Columns.GridColumn();
            this.HO_TEN_USER_DAT_HANG = new DevExpress.XtraGrid.Columns.GridColumn();
            this.DON_VI = new DevExpress.XtraGrid.Columns.GridColumn();
            this.DIEN_THOAI = new DevExpress.XtraGrid.Columns.GridColumn();
            this.TEN_NHOM_DICH_VU = new DevExpress.XtraGrid.Columns.GridColumn();
            this.NOI_DUNG_DAT_HANG = new DevExpress.XtraGrid.Columns.GridColumn();
            this.THOI_GIAN_TAO = new DevExpress.XtraGrid.Columns.GridColumn();
            this.THOI_DIEM_CAN_HOAN_THANH = new DevExpress.XtraGrid.Columns.GridColumn();
            this.THOI_GIAN_CAN_HOAN_THANH = new DevExpress.XtraGrid.Columns.GridColumn();
            this.NGUOI_TAO_THAO_TAC_LOG = new DevExpress.XtraGrid.Columns.GridColumn();
            this.GHI_CHU = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.PHUONG_THUC_DAT_HANG = new DevExpress.XtraGrid.Columns.GridColumn();
            this.CHI_NHANH = new DevExpress.XtraGrid.Columns.GridColumn();
            this.GHI_CHU_DH = new DevExpress.XtraGrid.Columns.GridColumn();
            this.panel2 = new System.Windows.Forms.Panel();
            this.panel3 = new System.Windows.Forms.Panel();
            this.panel9 = new System.Windows.Forms.Panel();
            this.panel1 = new System.Windows.Forms.Panel();
            this.panel8 = new System.Windows.Forms.Panel();
            this.m_lab_tieu_de = new System.Windows.Forms.Label();
            this.m_panel_TM = new System.Windows.Forms.Panel();
            this.panel13 = new System.Windows.Forms.Panel();
            this.m_cmd_TM_huy_hon_hang = new DevExpress.XtraEditors.SimpleButton();
            this.panel7 = new System.Windows.Forms.Panel();
            this.m_cmd_TM_cap_nhat_xu_ly = new DevExpress.XtraEditors.SimpleButton();
            this.m_cmd_TM_danh_gia = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_TD = new System.Windows.Forms.Panel();
            this.panel12 = new System.Windows.Forms.Panel();
            this.m_cmd_TD_cap_nhat_xu_ly = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_cap_nhat_don_hang_TD = new System.Windows.Forms.Panel();
            this.m_cmd_cap_nhat_TD = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_TD_tu_choi = new System.Windows.Forms.Panel();
            this.m_cmd_TD_huy_hon_hang = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_TD_hoan_thanh = new System.Windows.Forms.Panel();
            this.m_cmd_TD_hoan_thanh = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_TD_tiep_nhan = new System.Windows.Forms.Panel();
            this.m_cmd_TD_tiep_nhan_xu_ly = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_PM = new System.Windows.Forms.Panel();
            this.panel10 = new System.Windows.Forms.Panel();
            this.m_cmd_PM_cap_nhat_xu_ly = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_cap_nhat_don_hang_PM = new System.Windows.Forms.Panel();
            this.m_cmd_cap_nhat_PM = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_PM_dieu_phoi_lai = new System.Windows.Forms.Panel();
            this.m_cmd_PM_dieu_phoi = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_PM_hoan_thanh = new System.Windows.Forms.Panel();
            this.m_cmd_PM_bao_Cao_hoan_thanh = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_PM_gui_TD = new System.Windows.Forms.Panel();
            this.m_cmd_PM_gui_cho_TD = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_PM_tiep_nhan = new System.Windows.Forms.Panel();
            this.m_cmd_PM_tiep_nhan = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_BO = new System.Windows.Forms.Panel();
            this.m_panel_bo_chuyen_len_pm = new System.Windows.Forms.Panel();
            this.m_cmd_bo_chuyen_pm = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_bo_cap_nhat_xu_ly = new System.Windows.Forms.Panel();
            this.m_cmd_BO_cap_nhat_xu_ly = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_cap_nhat_don_hang_BO = new System.Windows.Forms.Panel();
            this.m_cmd_cap_nhat_BO = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_BO_hoan_thanh = new System.Windows.Forms.Panel();
            this.m_cmd_bao_cao_hoan_thanh = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_BO_tu_choi = new System.Windows.Forms.Panel();
            this.m_cmd_BO_tu_choi = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_BO_tiep_nhan = new System.Windows.Forms.Panel();
            this.m_cmd_FO_tiep_nhan = new DevExpress.XtraEditors.SimpleButton();
            this.m_panel_FO = new System.Windows.Forms.Panel();
            this.panel14 = new System.Windows.Forms.Panel();
            this.m_cmd_FO_huy_hon_hang = new DevExpress.XtraEditors.SimpleButton();
            this.panel6 = new System.Windows.Forms.Panel();
            this.m_cmd_dieu_phoi_cho_PM = new DevExpress.XtraEditors.SimpleButton();
            this.panel5 = new System.Windows.Forms.Panel();
            this.m_cmd_dieu_phoi_lai = new DevExpress.XtraEditors.SimpleButton();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.m_grc_gd_dat_hang_gd_log_dat_hang)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.m_grv_gd_dat_hang_gd_log_dat_hang)).BeginInit();
            this.panel2.SuspendLayout();
            this.panel3.SuspendLayout();
            this.panel9.SuspendLayout();
            this.panel1.SuspendLayout();
            this.panel8.SuspendLayout();
            this.m_panel_TM.SuspendLayout();
            this.panel13.SuspendLayout();
            this.panel7.SuspendLayout();
            this.m_panel_TD.SuspendLayout();
            this.panel12.SuspendLayout();
            this.m_panel_cap_nhat_don_hang_TD.SuspendLayout();
//.........这里部分代码省略.........
开发者ID:anhphamkstn,项目名称:DVMC,代码行数:101,代码来源:f0000_gd_dat_hang_gd_log_dat_hang.Designer.cs


示例7: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
            this.txtItemName = new DevExpress.XtraEditors.TextEdit();
            this.lkCategories = new DevExpress.XtraEditors.LookUpEdit();
            this.btnSave = new DevExpress.XtraEditors.SimpleButton();
            this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
            this.gridSelectedItems = new DevExpress.XtraGrid.GridControl();
            this.gridSelectedItemsView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colItemName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colUnit = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colManufacturer = new DevExpress.XtraGrid.Columns.GridColumn();
            this.lookUpManufacturer = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            this.colQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemTextQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.colAmount = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemTextAmount = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.colItemID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colSplit = new DevExpress.XtraGrid.Columns.GridColumn();
            this.PlusMinusButtonEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.repositoryItemDateEdit = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
            this.gridItemsList = new DevExpress.XtraGrid.GridControl();
            this.gridItemsView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.IsSelected = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.StockCode = new DevExpress.XtraGrid.Columns.GridColumn();
            this.Item = new DevExpress.XtraGrid.Columns.GridColumn();
            this.Unit = new DevExpress.XtraGrid.Columns.GridColumn();
            this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem8 = new DevExpress.XtraLayout.EmptySpaceItem();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
            this.layoutControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkCategories.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridSelectedItems)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridSelectedItemsView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lookUpManufacturer)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextQuantity)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextAmount)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PlusMinusButtonEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit.CalendarTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridItemsList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridItemsView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).BeginInit();
            this.SuspendLayout();
            // 
            // layoutControl1
            // 
            this.layoutControl1.AllowCustomizationMenu = false;
            this.layoutControl1.Controls.Add(this.txtItemName);
            this.layoutControl1.Controls.Add(this.lkCategories);
            this.layoutControl1.Controls.Add(this.btnSave);
            this.layoutControl1.Controls.Add(this.btnCancel);
            this.layoutControl1.Controls.Add(this.gridSelectedItems);
            this.layoutControl1.Controls.Add(this.gridItemsList);
            this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.layoutControl1.Location = new System.Drawing.Point(0, 0);
            this.layoutControl1.Name = "layoutControl1";
            this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(142, 164, 250, 350);
            this.layoutControl1.Root = this.layoutControlGroup1;
            this.layoutControl1.Size = new System.Drawing.Size(1244, 590);
            this.layoutControl1.TabIndex = 0;
            this.layoutControl1.Text = "layoutControl1";
            // 
            // txtItemName
            // 
            this.txtItemName.Location = new System.Drawing.Point(85, 67);
            this.txtItemName.Name = "txtItemName";
//.........这里部分代码省略.........
开发者ID:USAID-DELIVER-PROJECT,项目名称:ethiopia-hcmis-warehouse,代码行数:101,代码来源:PurchaseOrderDetailForm.Designer.cs


示例8: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(JobSettingsView));
            this.standaloneBarDockControl1 = new DevExpress.XtraBars.StandaloneBarDockControl();
            this.gridControl_FaultTypes = new DevExpress.XtraGrid.GridControl();
            this.faultTypeBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.gridView_FaultTypes = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colFaultTypeID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colFaultName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colNotes1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl_ItemTypes = new DevExpress.XtraGrid.GridControl();
            this.ItemTypeBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.gridView_ItemTypes = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colItemTypeID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colItemName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colNotes = new DevExpress.XtraGrid.Columns.GridColumn();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.bar2 = new DevExpress.XtraBars.Bar();
            this.barButtonItem_SaveJobSettings = new DevExpress.XtraBars.BarButtonItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.barButtonItem_RemoveItemType = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_RemoveFault = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Refresh = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_New = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_DeleteUser = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_SaveAccountSettings = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_SaveTransactionTypes = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_RefreshTransactionTypes = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_RefreshAccounts = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_SaveGeneralSettings = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu_ItemTypes = new DevExpress.XtraBars.PopupMenu(this.components);
            this.popupMenu_Fault = new DevExpress.XtraBars.PopupMenu(this.components);
            this.layoutControl6 = new DevExpress.XtraLayout.LayoutControl();
            this.layoutControlGroup6 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
            this.splitterItem1 = new DevExpress.XtraLayout.SplitterItem();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_FaultTypes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.faultTypeBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView_FaultTypes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_ItemTypes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ItemTypeBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView_ItemTypes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu_ItemTypes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu_Fault)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl6)).BeginInit();
            this.layoutControl6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).BeginInit();
            this.SuspendLayout();
            // 
            // standaloneBarDockControl1
            // 
            this.standaloneBarDockControl1.CausesValidation = false;
            this.standaloneBarDockControl1.Location = 

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Grid.GridView类代码示例发布时间:2022-05-24
下一篇:
C# XtraGrid.GridLevelNode类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap