本文整理汇总了C#中DevExpress.XtraEditors.TextEdit类的典型用法代码示例。如果您正苦于以下问题:C# DevExpress.XtraEditors.TextEdit类的具体用法?C# DevExpress.XtraEditors.TextEdit怎么用?C# DevExpress.XtraEditors.TextEdit使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DevExpress.XtraEditors.TextEdit类属于命名空间,在下文中一共展示了DevExpress.XtraEditors.TextEdit类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.newFileNameTxt = new DevExpress.XtraEditors.TextEdit();
this.acceptNewNameBtn = new DevExpress.XtraEditors.SimpleButton();
((System.ComponentModel.ISupportInitialize)(this.newFileNameTxt.Properties)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(23, 13);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 13);
this.label1.TabIndex = 0;
this.label1.Text = "label1";
//
// newFileNameTxt
//
this.newFileNameTxt.Location = new System.Drawing.Point(12, 29);
this.newFileNameTxt.Name = "newFileNameTxt";
this.newFileNameTxt.Size = new System.Drawing.Size(268, 20);
this.newFileNameTxt.TabIndex = 1;
//
// acceptNewNameBtn
//
this.acceptNewNameBtn.Location = new System.Drawing.Point(106, 55);
this.acceptNewNameBtn.Name = "acceptNewNameBtn";
this.acceptNewNameBtn.Size = new System.Drawing.Size(75, 23);
this.acceptNewNameBtn.TabIndex = 2;
this.acceptNewNameBtn.Text = "OK";
//
// renameObjectForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(292, 67);
this.ControlBox = false;
this.Controls.Add(this.acceptNewNameBtn);
this.Controls.Add(this.newFileNameTxt);
this.Controls.Add(this.label1);
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(300, 75);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(300, 75);
this.Name = "renameObjectForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.TopMost = true;
((System.ComponentModel.ISupportInitialize)(this.newFileNameTxt.Properties)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
示例2: SetupIdBoxes
private void SetupIdBoxes()
{
foreach (IMovieScraper scraper in scrapers)
{
var item = layoutIds.Root.AddItem();
var textBox = new DevExpress.XtraEditors.TextEdit { Name = "txtId" + scraper.ScraperName.ToString() };
item.Name = scraper.ScraperName.ToString();
item.Text = Tools.Importing.MovieNaming.AddSpacesToSentence(scraper.ScraperName.ToString()) + ":";
textBox.SuperTip = new SuperToolTip();
textBox.SuperTip.Items.Add(scraper.DefaultUrl);
item.Control = textBox;
}
}
示例3: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLst_CustomerGroups_2));
DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.txtCustomerGroupName = new DevExpress.XtraEditors.TextEdit();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.lblCheckIn = new DevExpress.XtraEditors.LabelControl();
this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
this.lblCheckOut = new DevExpress.XtraEditors.LabelControl();
this.btnAddNew = new DevExpress.XtraEditors.SimpleButton();
this.dgvCustomerMember = new DevExpress.XtraGrid.GridControl();
this.viewSelectCustomers = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
this.btnRemoveSelectCustomers = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.dgvAvailableCustomerGroups = new DevExpress.XtraGrid.GridControl();
this.viewAvailableCustomerGroups = new DevExpress.XtraGrid.Views.Grid.GridView();
this.colDelete = new DevExpress.XtraGrid.Columns.GridColumn();
this.btnDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.colEdit = new DevExpress.XtraGrid.Columns.GridColumn();
this.btnEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
this.btnSelectIDCustomerGroups = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.lueFilterCompany = new DevExpress.XtraEditors.LookUpEdit();
this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
this.tableLayoutPanel4.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.txtCustomerGroupName.Properties)).BeginInit();
this.tableLayoutPanel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvCustomerMember)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.viewSelectCustomers)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.btnRemoveSelectCustomers)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dgvAvailableCustomerGroups)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.viewAvailableCustomerGroups)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.btnDelete)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.btnEdit)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.btnSelectIDCustomerGroups)).BeginInit();
this.tableLayoutPanel3.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.lueFilterCompany.Properties)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel4
//
this.tableLayoutPanel4.ColumnCount = 2;
this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 14.26612F));
this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 85.73388F));
this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel4.Controls.Add(this.labelControl13, 0, 0);
this.tableLayoutPanel4.Controls.Add(this.labelControl1, 0, 1);
this.tableLayoutPanel4.Controls.Add(this.txtCustomerGroupName, 1, 0);
this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel2, 1, 1);
this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel4.Location = new System.Drawing.Point(443, 3);
this.tableLayoutPanel4.Name = "tableLayoutPanel4";
this.tableLayoutPanel4.RowCount = 2;
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel4.Size = new System.Drawing.Size(780, 62);
this.tableLayoutPanel4.TabIndex = 1;
//
// labelControl13
//
this.labelControl13.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelControl13.Location = new System.Drawing.Point(3, 7);
this.labelControl13.Name = "labelControl13";
this.labelControl13.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
this.labelControl13.Size = new System.Drawing.Size(72, 16);
this.labelControl13.TabIndex = 2;
this.labelControl13.Text = "Tên nhóm";
//
// labelControl1
//
this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelControl1.Location = new System.Drawing.Point(30, 38);
this.labelControl1.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
this.labelControl1.Name = "labelControl1";
this.labelControl1.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
this.labelControl1.Size = new System.Drawing.Size(33, 17);
this.labelControl1.TabIndex = 6;
this.labelControl1.Text = "Từ ";
//.........这里部分代码省略.........
示例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.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.textEditPW = new DevExpress.XtraEditors.TextEdit();
this.textEditUserID = new DevExpress.XtraEditors.TextEdit();
this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
this.panelControl1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.textEditPW.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditUserID.Properties)).BeginInit();
this.SuspendLayout();
//
// panelControl1
//
this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
this.panelControl1.Controls.Add(this.label2);
this.panelControl1.Controls.Add(this.label1);
this.panelControl1.Controls.Add(this.textEditPW);
this.panelControl1.Controls.Add(this.textEditUserID);
this.panelControl1.Controls.Add(this.simpleButtonCancel);
this.panelControl1.Controls.Add(this.simpleButtonOK);
this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelControl1.Location = new System.Drawing.Point(0, 0);
this.panelControl1.Name = "panelControl1";
this.panelControl1.Size = new System.Drawing.Size(264, 142);
this.panelControl1.TabIndex = 0;
this.panelControl1.Text = "panelControl1";
//
// label2
//
this.label2.Location = new System.Drawing.Point(8, 56);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(80, 23);
this.label2.TabIndex = 36;
this.label2.Text = "Password";
//
// label1
//
this.label1.Location = new System.Drawing.Point(8, 24);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(80, 23);
this.label1.TabIndex = 35;
this.label1.Text = "Instructor ID";
//
// textEditPW
//
this.textEditPW.EditValue = "";
this.textEditPW.Location = new System.Drawing.Point(112, 56);
this.textEditPW.Name = "textEditPW";
//
// textEditPW.Properties
//
this.textEditPW.Properties.PasswordChar = '*';
this.textEditPW.Size = new System.Drawing.Size(136, 20);
this.textEditPW.TabIndex = 0;
//
// textEditUserID
//
this.textEditUserID.EditValue = "";
this.textEditUserID.Location = new System.Drawing.Point(112, 24);
this.textEditUserID.Name = "textEditUserID";
this.textEditUserID.Size = new System.Drawing.Size(136, 20);
this.textEditUserID.TabIndex = 1;
//
// simpleButtonCancel
//
this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.simpleButtonCancel.Location = new System.Drawing.Point(152, 96);
this.simpleButtonCancel.Name = "simpleButtonCancel";
this.simpleButtonCancel.TabIndex = 32;
this.simpleButtonCancel.Text = "Cancel";
//
// simpleButtonOK
//
this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.simpleButtonOK.Location = new System.Drawing.Point(48, 96);
this.simpleButtonOK.Name = "simpleButtonOK";
this.simpleButtonOK.TabIndex = 31;
this.simpleButtonOK.Text = "OK";
this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
//
// InstructorLogin
//
this.AcceptButton = this.simpleButtonOK;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.simpleButtonCancel;
this.ClientSize = new System.Drawing.Size(264, 142);
this.Controls.Add(this.panelControl1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "InstructorLogin";
this.ShowInTaskbar = false;
//.........这里部分代码省略.........
示例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();
this.patientDocBgWorker = new System.ComponentModel.BackgroundWorker();
this.searchTimer = new System.Windows.Forms.Timer(this.components);
this.postCodeTimer = new System.Windows.Forms.Timer(this.components);
this.postCodeBgWorker = new System.ComponentModel.BackgroundWorker();
this.loadBarTimer = new System.Windows.Forms.Timer(this.components);
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.commentTextBox = new System.Windows.Forms.TextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.removeClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
this.addClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
this.claimantListBox = new System.Windows.Forms.ListBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.MedicalConditionsComboBoxEdit = new DevExpress.XtraEditors.CheckedComboBoxEdit();
this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
this.SmokerNoCheckEdit = new DevExpress.XtraEditors.CheckEdit();
this.SmokerYesCheckEdit = new DevExpress.XtraEditors.CheckEdit();
this.patientDetailsGroupBox = new System.Windows.Forms.GroupBox();
this.claimNoTextEdit = new DevExpress.XtraEditors.TextEdit();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.physioComboBox = new System.Windows.Forms.ComboBox();
this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
this.dvaTextBox = new DevExpress.XtraEditors.TextEdit();
this.findPostCodeBtn = new DevExpress.XtraEditors.SimpleButton();
this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
this.TitleComboBox = new System.Windows.Forms.ComboBox();
this.postCodeTextBox = new DevExpress.XtraEditors.TextEdit();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.stateTextBox = new DevExpress.XtraEditors.TextEdit();
this.genderFemaleTickBox = new DevExpress.XtraEditors.CheckEdit();
this.genderMaleTickBox = new DevExpress.XtraEditors.CheckEdit();
this.suburbComboBox = new System.Windows.Forms.ComboBox();
this.addressTextEdit = new DevExpress.XtraEditors.TextEdit();
this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
this.doBDateEdit = new DevExpress.XtraEditors.DateEdit();
this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
this.givenNameTextEdit = new DevExpress.XtraEditors.TextEdit();
this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
this.surnameTextEdit = new DevExpress.XtraEditors.TextEdit();
this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
this.applyBtn = new DevExpress.XtraEditors.SimpleButton();
this.searchResultProgressBar = new System.Windows.Forms.ProgressBar();
this.newPatientBtn = new DevExpress.XtraEditors.SimpleButton();
this.cancelBtn = new DevExpress.XtraEditors.SimpleButton();
this.okBtn = new DevExpress.XtraEditors.SimpleButton();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.displayGridControl = new DevExpress.XtraGrid.GridControl();
this.displayGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
this.goBtn = new DevExpress.XtraEditors.SimpleButton();
this.searchFieldTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
this.homePhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
this.mobileTextEdit = new DevExpress.XtraEditors.TextEdit();
this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
this.workPhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
this.emailTextEdit = new DevExpress.XtraEditors.TextEdit();
this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.MedicalConditionsComboBoxEdit.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.SmokerNoCheckEdit.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.SmokerYesCheckEdit.Properties)).BeginInit();
this.patientDetailsGroupBox.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.claimNoTextEdit.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dvaTextBox.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.postCodeTextBox.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.stateTextBox.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.genderFemaleTickBox.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.genderMaleTickBox.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.addressTextEdit.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties.VistaTimeProperties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.givenNameTextEdit.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.surnameTextEdit.Properties)).BeginInit();
this.groupBox5.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.displayGridControl)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.displayGridView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.homePhoneTextEdit.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.mobileTextEdit.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.workPhoneTextEdit.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.emailTextEdit.Properties)).BeginInit();
this.SuspendLayout();
//
//.........这里部分代码省略.........
示例6: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmUpd_Companies));
this.btnUpdate = new DevExpress.XtraEditors.SimpleButton();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
this.txtName = new DevExpress.XtraEditors.TextEdit();
this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
this.cboDisable = new DevExpress.XtraEditors.ComboBoxEdit();
this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
this.cboStatus = new DevExpress.XtraEditors.ComboBoxEdit();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.lueCustomerType = new DevExpress.XtraEditors.LookUpEdit();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
this.txtTaxNumberCode = new DevExpress.XtraEditors.TextEdit();
this.txtAddress = new DevExpress.XtraEditors.TextEdit();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel4.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.cboDisable.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.cboStatus.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.lueCustomerType.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtTaxNumberCode.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtAddress.Properties)).BeginInit();
this.tableLayoutPanel3.SuspendLayout();
this.SuspendLayout();
//
// btnUpdate
//
this.btnUpdate.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.btnUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
this.btnUpdate.Appearance.Options.UseFont = true;
this.btnUpdate.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.btnUpdate.Image = ((System.Drawing.Image)(resources.GetObject("btnUpdate.Image")));
this.btnUpdate.Location = new System.Drawing.Point(121, 8);
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.Size = new System.Drawing.Size(100, 28);
this.btnUpdate.TabIndex = 15;
this.btnUpdate.Text = "Cập nhật";
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 2);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(20, 0, 20, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 79F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(330, 308);
this.tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel4
//
this.tableLayoutPanel4.ColumnCount = 2;
this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 70F));
this.tableLayoutPanel4.Controls.Add(this.labelControl13, 0, 0);
this.tableLayoutPanel4.Controls.Add(this.txtName, 1, 0);
this.tableLayoutPanel4.Controls.Add(this.labelControl8, 0, 5);
this.tableLayoutPanel4.Controls.Add(this.cboDisable, 1, 5);
this.tableLayoutPanel4.Controls.Add(this.labelControl16, 0, 4);
this.tableLayoutPanel4.Controls.Add(this.cboStatus, 1, 4);
this.tableLayoutPanel4.Controls.Add(this.labelControl1, 0, 3);
this.tableLayoutPanel4.Controls.Add(this.lueCustomerType, 1, 3);
this.tableLayoutPanel4.Controls.Add(this.labelControl2, 0, 1);
this.tableLayoutPanel4.Controls.Add(this.labelControl3, 0, 2);
this.tableLayoutPanel4.Controls.Add(this.txtTaxNumberCode, 1, 1);
this.tableLayoutPanel4.Controls.Add(this.txtAddress, 1, 2);
this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 21);
this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel4.Name = "tableLayoutPanel4";
this.tableLayoutPanel4.RowCount = 6;
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16F));
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16F));
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17F));
this.tableLayoutPanel4.Size = new System.Drawing.Size(330, 243);
this.tableLayoutPanel4.TabIndex = 1;
//
// labelControl13
//
this.labelControl13.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
//.........这里部分代码省略.........
示例7: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.TxtUserName = new DevExpress.XtraEditors.TextEdit();
this.BtnEnter = new DevExpress.XtraEditors.SimpleButton();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.TxtPassword = new DevExpress.XtraEditors.TextEdit();
this.BtnEnd = new DevExpress.XtraEditors.SimpleButton();
((System.ComponentModel.ISupportInitialize)(this.TxtUserName.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.TxtPassword.Properties)).BeginInit();
this.SuspendLayout();
//
// labelControl1
//
this.labelControl1.Appearance.ForeColor = System.Drawing.Color.Black;
this.labelControl1.Location = new System.Drawing.Point(206, 21);
this.labelControl1.Name = "labelControl1";
this.labelControl1.Size = new System.Drawing.Size(74, 13);
this.labelControl1.TabIndex = 0;
this.labelControl1.Text = "اسم المستخدم";
//
// TxtUserName
//
this.TxtUserName.EditValue = "";
this.TxtUserName.Location = new System.Drawing.Point(18, 17);
this.TxtUserName.Name = "TxtUserName";
this.TxtUserName.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
this.TxtUserName.Size = new System.Drawing.Size(182, 22);
this.TxtUserName.TabIndex = 0;
this.TxtUserName.EditValueChanged += new System.EventHandler(this.text_EditValueChanged);
//
// BtnEnter
//
this.BtnEnter.Location = new System.Drawing.Point(18, 107);
this.BtnEnter.Name = "BtnEnter";
this.BtnEnter.Size = new System.Drawing.Size(182, 23);
this.BtnEnter.TabIndex = 2;
this.BtnEnter.Text = "دخــــــــــــــــــــــــــول";
this.BtnEnter.Click += new System.EventHandler(this.BtnEnter_Click);
//
// labelControl2
//
this.labelControl2.Appearance.ForeColor = System.Drawing.Color.Black;
this.labelControl2.Location = new System.Drawing.Point(227, 52);
this.labelControl2.Name = "labelControl2";
this.labelControl2.Size = new System.Drawing.Size(54, 13);
this.labelControl2.TabIndex = 0;
this.labelControl2.Text = "كلمة الســر";
//
// TxtPassword
//
this.TxtPassword.EditValue = "";
this.TxtPassword.Location = new System.Drawing.Point(18, 48);
this.TxtPassword.Name = "TxtPassword";
this.TxtPassword.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
this.TxtPassword.Properties.PasswordChar = '*';
this.TxtPassword.Size = new System.Drawing.Size(182, 22);
this.TxtPassword.TabIndex = 1;
this.TxtPassword.EditValueChanged += new System.EventHandler(this.text_EditValueChanged);
//
// BtnEnd
//
this.BtnEnd.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.BtnEnd.Location = new System.Drawing.Point(215, 107);
this.BtnEnd.Name = "BtnEnd";
this.BtnEnd.Size = new System.Drawing.Size(75, 23);
this.BtnEnd.TabIndex = 3;
this.BtnEnd.Text = "خروج";
this.BtnEnd.Click += new System.EventHandler(this.BtnEnd_Click);
//
// LoginFrm
//
this.AcceptButton = this.BtnEnter;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImageLayoutStore = System.Windows.Forms.ImageLayout.Tile;
this.BackgroundImageStore = global::schoolStore.Properties.Resources.Login_Back;
this.CancelButton = this.BtnEnd;
this.ClientSize = new System.Drawing.Size(288, 138);
this.ControlBox = false;
this.Controls.Add(this.BtnEnd);
this.Controls.Add(this.BtnEnter);
this.Controls.Add(this.TxtPassword);
this.Controls.Add(this.labelControl2);
this.Controls.Add(this.TxtUserName);
this.Controls.Add(this.labelControl1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "LoginFrm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "المستخدميـــــــــــــن";
this.TopMost = true;
((System.ComponentModel.ISupportInitialize)(this.TxtUserName.Properties)).EndInit();
//.........这里部分代码省略.........
示例8: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProducts));
DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
this.xtrabarGeneralinformation = new DevExpress.XtraTab.XtraTabPage();
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.txtfactor = new DevExpress.XtraEditors.ComboBoxEdit();
this.txtuompurchase = new DevExpress.XtraEditors.ComboBoxEdit();
this.txtuomsize = new DevExpress.XtraEditors.ComboBoxEdit();
this.txtuomsale = new DevExpress.XtraEditors.ComboBoxEdit();
this.cmbValueMethod = new DevExpress.XtraEditors.ComboBoxEdit();
this.txtAvgRate = new DevExpress.XtraEditors.TextEdit();
this.txtToleranceDay = new DevExpress.XtraEditors.TextEdit();
this.txtLoadTime = new DevExpress.XtraEditors.TextEdit();
this.txtPurchaseRate = new DevExpress.XtraEditors.TextEdit();
this.txtSpecialRate = new DevExpress.XtraEditors.TextEdit();
this.txtCostRate = new DevExpress.XtraEditors.TextEdit();
this.txtTransit = new DevExpress.XtraEditors.TextEdit();
this.txtTarget = new DevExpress.XtraEditors.TextEdit();
this.txtNetBalance = new DevExpress.XtraEditors.TextEdit();
this.txtBalanceBonus = new DevExpress.XtraEditors.TextEdit();
this.txtBalanceStock = new DevExpress.XtraEditors.TextEdit();
this.txtMaxQuantityDays = new DevExpress.XtraEditors.TextEdit();
this.txtMaxQuantityPCustomer = new DevExpress.XtraEditors.TextEdit();
this.txtPackInBox = new DevExpress.XtraEditors.TextEdit();
this.txtInventoryDays = new DevExpress.XtraEditors.TextEdit();
this.txtMinFlatRate = new DevExpress.XtraEditors.TextEdit();
this.txtMaxFlatRate = new DevExpress.XtraEditors.TextEdit();
this.cmbSaleTaxCalculation = new DevExpress.XtraEditors.ComboBoxEdit();
this.txtSaleTaxVale = new DevExpress.XtraEditors.TextEdit();
this.txtSaleTaxPer = new DevExpress.XtraEditors.TextEdit();
this.txtMaxSalesDisc = new DevExpress.XtraEditors.TextEdit();
this.txtPurchaseDiscountPer = new DevExpress.XtraEditors.TextEdit();
this.txtRetailPrice = new DevExpress.XtraEditors.TextEdit();
this.chkwolallow = new DevExpress.XtraEditors.CheckEdit();
this.chkAllowPer = new DevExpress.XtraEditors.CheckEdit();
this.chkAutoBonus = new DevExpress.XtraEditors.CheckEdit();
this.chkSaleBase = new DevExpress.XtraEditors.CheckEdit();
this.chkSaleTaxReg = new DevExpress.XtraEditors.CheckEdit();
this.chkNonPharma = new DevExpress.XtraEditors.CheckEdit();
this.chkExcempted = new DevExpress.XtraEditors.CheckEdit();
this.chkUseFlatRate = new DevExpress.XtraEditors.CheckEdit();
this.chkNorCotics = new DevExpress.XtraEditors.CheckEdit();
this.chkHideinTabs = new DevExpress.XtraEditors.CheckEdit();
this.chkAllowMaxQtyDays = new DevExpress.XtraEditors.CheckEdit();
this.chkProductDiscontinue = new DevExpress.XtraEditors.CheckEdit();
this.txtTradePrice = new DevExpress.XtraEditors.TextEdit();
this.txtSaleRate = new DevExpress.XtraEditors.TextEdit();
this.txtPackInCarton = new DevExpress.XtraEditors.TextEdit();
this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
this.labelControl50 = new DevExpress.XtraEditors.LabelControl();
this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
this.labelControl52 = new DevExpress.XtraEditors.LabelControl();
this.labelControl53 = new DevExpress.XtraEditors.LabelControl();
this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
//.........这里部分代码省略.........
示例9: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
protected void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMuonTraQL));
this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
this.MainBar = new DevExpress.XtraBars.Bar();
this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
this.barButtonItemClose = 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.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
this.ChuaTra = new DevExpress.XtraEditors.CheckEdit();
this.ngayTra = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
this.label29 = new DevExpress.XtraEditors.LabelControl();
this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
this.NgayMuon = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
this.MaPMT = new DevExpress.XtraEditors.TextEdit();
this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
this.TenChuongTrinh = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
this.CongTyMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
this.BoPhanMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
this.NguoiMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
this.NuocSX = new ProtocolVN.Framework.Win.PLMultiCombobox();
this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
this.label10 = new DevExpress.XtraEditors.LabelControl();
this.label1 = new DevExpress.XtraEditors.LabelControl();
this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
this.label3 = new DevExpress.XtraEditors.LabelControl();
this.label5 = new DevExpress.XtraEditors.LabelControl();
this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
this.Col_MaPhieu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_NguoiMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_BoPhanMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_CongTyMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_NgayMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_MucDich = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_NgayTra = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_NguoiTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_NgayTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_CongTy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
this.TreeDes = new DevExpress.XtraTreeList.PLTreeList();
this.ColDes_Ten = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_TenGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_NuocSX = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_TietMuc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_SoTapGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_LoaiLuuTru = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_Betacam = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_File = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_DVD = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_Cap = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_TenPM = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_TenCT = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_PhongBan = new DevExpress.XtraTreeList.Columns.TreeListColumn();
//.........这里部分代码省略.........
示例10: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PopupRegistered));
this.groupControlWarning = new DevExpress.XtraEditors.GroupControl();
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.panelControlSetting = new DevExpress.XtraEditors.PanelControl();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.textEditADCSerial5 = new DevExpress.XtraEditors.TextEdit();
this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
this.textEditADCSerial4 = new DevExpress.XtraEditors.TextEdit();
this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
this.textEditADCSerial3 = new DevExpress.XtraEditors.TextEdit();
this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
this.textEditADCSerial2 = new DevExpress.XtraEditors.TextEdit();
this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
this.textEditADCSerial1 = new DevExpress.XtraEditors.TextEdit();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.textEditProductID = new DevExpress.XtraEditors.TextEdit();
this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
this.btOK = new DevExpress.XtraEditors.SimpleButton();
((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).BeginInit();
this.groupControlWarning.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).BeginInit();
this.panelControlSetting.SuspendLayout();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial5.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial4.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial3.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial2.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditADCSerial1.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditProductID.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
this.panelControl2.SuspendLayout();
this.SuspendLayout();
//
// groupControlWarning
//
this.groupControlWarning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
this.groupControlWarning.AppearanceCaption.Options.UseFont = true;
this.groupControlWarning.Controls.Add(this.panelControl1);
this.groupControlWarning.Controls.Add(this.panelControlSetting);
this.groupControlWarning.Controls.Add(this.panelControl2);
this.groupControlWarning.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupControlWarning.Location = new System.Drawing.Point(20, 20);
this.groupControlWarning.Name = "groupControlWarning";
this.groupControlWarning.Padding = new System.Windows.Forms.Padding(5);
this.groupControlWarning.Size = new System.Drawing.Size(584, 292);
this.groupControlWarning.TabIndex = 342;
this.groupControlWarning.Text = "Registration";
//
// panelControl1
//
this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
this.panelControl1.ContentImage = ((System.Drawing.Image)(resources.GetObject("panelControl1.ContentImage")));
this.panelControl1.Dock = System.Windows.Forms.DockStyle.Left;
this.panelControl1.Location = new System.Drawing.Point(7, 27);
this.panelControl1.Name = "panelControl1";
this.panelControl1.Padding = new System.Windows.Forms.Padding(5);
this.panelControl1.Size = new System.Drawing.Size(202, 220);
this.panelControl1.TabIndex = 1;
//
// panelControlSetting
//
this.panelControlSetting.Controls.Add(this.groupBox1);
this.panelControlSetting.Controls.Add(this.textEditProductID);
this.panelControlSetting.Controls.Add(this.labelControl8);
this.panelControlSetting.Controls.Add(this.labelControl1);
this.panelControlSetting.Dock = System.Windows.Forms.DockStyle.Right;
this.panelControlSetting.Location = new System.Drawing.Point(215, 27);
this.panelControlSetting.Name = "panelControlSetting";
this.panelControlSetting.Padding = new System.Windows.Forms.Padding(5);
this.panelControlSetting.Size = new System.Drawing.Size(362, 220);
this.panelControlSetting.TabIndex = 0;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.textEditADCSerial5);
this.groupBox1.Controls.Add(this.labelControl6);
this.groupBox1.Controls.Add(this.textEditADCSerial4);
this.groupBox1.Controls.Add(this.labelControl5);
this.groupBox1.Controls.Add(this.textEditADCSerial3);
this.groupBox1.Controls.Add(this.labelControl4);
this.groupBox1.Controls.Add(this.textEditADCSerial2);
this.groupBox1.Controls.Add(this.labelControl3);
this.groupBox1.Controls.Add(this.textEditADCSerial1);
this.groupBox1.Controls.Add(this.labelControl2);
this.groupBox1.Location = new System.Drawing.Point(11, 54);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(341, 156);
this.groupBox1.TabIndex = 319;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "ADC";
//
//.........这里部分代码省略.........
示例11: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataBillFrm));
this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditSalesUnitID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemTextEditEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemCalcEditEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemCalcEditEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemButtonEditEditSortNo1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridControlEditor = new DevExpress.XtraGrid.GridControl();
this.mastergridView = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemDateEditEditStoreTrDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditPERSONID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditEMPID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemTextEditEditTotalkasm = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemTextEditEditExtraFees = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemMemoExEditEditREM = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditStoreID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditBillPayTypeID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemButtonEditEditBillDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemButtonEditBillEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.xtraTabControlEditor = new DevExpress.XtraTab.XtraTabControl();
this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
this.BtnPrint = new DevExpress.XtraEditors.SimpleButton();
this.BtnSave = new DevExpress.XtraEditors.SimpleButton();
this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
this.LblTotal = new DevExpress.XtraEditors.LabelControl();
this.GridControlAddDetials = new DevExpress.XtraGrid.GridControl();
this.gridViewAdd = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumnStoreTrID = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumnSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumnQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemTextEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
this.gridColumnPrice = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemCalcEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
this.gridColumnDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemCalcEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
this.gridColumnSort = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemButtonEditSort = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemButtonEditDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.gridColumnTotal = new DevExpress.XtraGrid.Columns.GridColumn();
this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
this.TxtREM = new DevExpress.XtraEditors.MemoEdit();
this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
this.TxtExtraFees = new DevExpress.XtraEditors.TextEdit();
this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
this.TxtTotalkasm = new DevExpress.XtraEditors.TextEdit();
this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
this.LUEStoreID = new DevExpress.XtraEditors.LookUpEdit();
this.LUEBillPayType = new DevExpress.XtraEditors.LookUpEdit();
this.LUEEMPID = new DevExpress.XtraEditors.LookUpEdit();
this.LUEPERSONID = new DevExpress.XtraEditors.LookUpEdit();
this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
this.DEStoreTrDate = new DevExpress.XtraEditors.DateEdit();
this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
this.TxtStoreTrIDDAY = new DevExpress.XtraEditors.TextEdit();
this.TxtStoreTrIDTYPE = new DevExpress.XtraEditors.TextEdit();
this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.xtraTabPageEdit = new DevExpress.XtraTab.XtraTabPage();
this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
this.gridControlEditorDetial = new DevExpress.XtraGrid.GridControl();
this.gridViewEditDetial = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumnEditDetialSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditDetialSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemTextEditDetailQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
//.........这里部分代码省略.........
示例12: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.groupControlWarning = new DevExpress.XtraEditors.GroupControl();
this.checkEditAll = new DevExpress.XtraEditors.CheckEdit();
this.panelControlSetting = new DevExpress.XtraEditors.PanelControl();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.textEdit_database = new DevExpress.XtraEditors.TextEdit();
this.textEdit_vacantroom = new DevExpress.XtraEditors.TextEdit();
this.checkEdit_database = new DevExpress.XtraEditors.CheckEdit();
this.checkEdit_vacantroom = new DevExpress.XtraEditors.CheckEdit();
this.checkEdit_overdue_payment = new DevExpress.XtraEditors.CheckEdit();
this.checkEdit_billingdate = new DevExpress.XtraEditors.CheckEdit();
this.checkEdit_endofbook = new DevExpress.XtraEditors.CheckEdit();
this.checkEdit_overdue_checkout = new DevExpress.XtraEditors.CheckEdit();
this.checkEdit_overdue_checkin = new DevExpress.XtraEditors.CheckEdit();
this.checkEdit_email = new DevExpress.XtraEditors.CheckEdit();
this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
this.textEdit_email = new DevExpress.XtraEditors.TextEdit();
this.labelControlEmail = new DevExpress.XtraEditors.LabelControl();
this.labelControlSampleEmail = new DevExpress.XtraEditors.LabelControl();
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.bttSave = new DevExpress.XtraEditors.SimpleButton();
this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
((System.ComponentModel.ISupportInitialize)(this.groupControlWarning)).BeginInit();
this.groupControlWarning.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.checkEditAll.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControlSetting)).BeginInit();
this.panelControlSetting.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.textEdit_database.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEdit_vacantroom.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.checkEdit_database.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.checkEdit_vacantroom.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_payment.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.checkEdit_billingdate.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.checkEdit_endofbook.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkout.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.checkEdit_overdue_checkin.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.checkEdit_email.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
this.panelControl3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.textEdit_email.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
this.panelControl1.SuspendLayout();
this.SuspendLayout();
//
// groupControlWarning
//
this.groupControlWarning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
this.groupControlWarning.AppearanceCaption.Options.UseFont = true;
this.groupControlWarning.Controls.Add(this.checkEditAll);
this.groupControlWarning.Controls.Add(this.panelControlSetting);
this.groupControlWarning.Location = new System.Drawing.Point(13, 13);
this.groupControlWarning.Name = "groupControlWarning";
this.groupControlWarning.Size = new System.Drawing.Size(599, 244);
this.groupControlWarning.TabIndex = 342;
this.groupControlWarning.Text = "รายการแจ้งเตือน";
//
// checkEditAll
//
this.checkEditAll.Location = new System.Drawing.Point(15, 25);
this.checkEditAll.Name = "checkEditAll";
this.checkEditAll.Properties.Caption = "เลือกทั้งหมด";
this.checkEditAll.Size = new System.Drawing.Size(152, 19);
this.checkEditAll.TabIndex = 1;
//
// panelControlSetting
//
this.panelControlSetting.Controls.Add(this.labelControl2);
this.panelControlSetting.Controls.Add(this.labelControl1);
this.panelControlSetting.Controls.Add(this.textEdit_database);
this.panelControlSetting.Controls.Add(this.textEdit_vacantroom);
this.panelControlSetting.Controls.Add(this.checkEdit_database);
this.panelControlSetting.Controls.Add(this.checkEdit_vacantroom);
this.panelControlSetting.Controls.Add(this.checkEdit_overdue_payment);
this.panelControlSetting.Controls.Add(this.checkEdit_billingdate);
this.panelControlSetting.Controls.Add(this.checkEdit_endofbook);
this.panelControlSetting.Controls.Add(this.checkEdit_overdue_checkout);
this.panelControlSetting.Controls.Add(this.checkEdit_overdue_checkin);
this.panelControlSetting.Location = new System.Drawing.Point(17, 50);
this.panelControlSetting.Name = "panelControlSetting";
this.panelControlSetting.Size = new System.Drawing.Size(564, 181);
this.panelControlSetting.TabIndex = 0;
//
// labelControl2
//
this.labelControl2.Location = new System.Drawing.Point(434, 158);
this.labelControl2.Name = "labelControl2";
this.labelControl2.Size = new System.Drawing.Size(13, 13);
this.labelControl2.TabIndex = 3;
this.labelControl2.Text = "GB";
//
// labelControl1
//
this.labelControl1.Location = new System.Drawing.Point(434, 131);
this.labelControl1.Name = "labelControl1";
//.........这里部分代码省略.........
示例13: CreatSearchControl
/// <summary>
/// 创建查询条件控件
/// </summary>
private void CreatSearchControl()
{
try
{
if (dtDetail != null && dtMain != null && dtMain.Rows.Count > 0)
{
//每行控件数
int iControlColumn = Convert.ToInt32(dtMain.Rows[0]["iControlColumn"]);
//控件间距
int iControlSpace = Convert.ToInt32(dtMain.Rows[0]["iControlSpace"]);
//先计算需要生成查询的数据
DataRow[] dr = dtDetail.Select("bIsQuery=1");
//计算控件总共行数
int iRows = 0;
if (dr.Length > 0)
{
if (dr.Length % iControlColumn != 0)
{
iRows = (int)Math.Floor(Convert.ToDecimal(dr.Length / iControlColumn)) + 1;
}
else
{
iRows = Convert.ToInt32(dr.Length / iControlColumn);
}
//设置控件数计数
int iControl = 0;
for (int j = 0; j < iRows; j++)
{
for (int i = 0; i < iControlColumn; i++)
{
//控件类型
string sColumnType = dr[iControl]["sColumnType"].ToString();
//取得查询条件默认值
object oColumnDefaultValue = dr[iControl]["sDefaultValue"];
if (oColumnDefaultValue.ToString().ToLower() == "<userid>")
{
oColumnDefaultValue = BWS.ERP.Security.SecurityCenter.CurrentUserID;
}
//默认值中日期类型解析
if (oColumnDefaultValue.ToString().ToLower().Contains("<getdate>") && sColumnType == "D")
{
if (oColumnDefaultValue.ToString().Length == 9)
{
oColumnDefaultValue = DateTime.Now.ToShortDateString();
}
else if (oColumnDefaultValue.ToString().ToLower().Contains("+"))
{
int iDays = Convert.ToInt32(oColumnDefaultValue.ToString().Trim().Substring(10));
oColumnDefaultValue = DateTime.Now.AddDays(iDays);
}
else if (oColumnDefaultValue.ToString().ToLower().Contains("-"))
{
int iDays = Convert.ToInt32(oColumnDefaultValue.ToString().Trim().Substring(10));
oColumnDefaultValue = DateTime.Now.AddDays(-iDays);
}
}
if (oColumnDefaultValue.ToString() != "" && sColumnType == "K" && Convert.ToInt32(oColumnDefaultValue.ToString()) == 1)
{
oColumnDefaultValue = true;
}
else if (oColumnDefaultValue.ToString() != "" && sColumnType == "K" && Convert.ToInt32(oColumnDefaultValue.ToString()) == 0)
{
oColumnDefaultValue = false;
}
//创建控件
//Lable大小控制为80X21,其他输入控件大小为120X21
Label lbl = new Label();
lbl.AutoSize = false;
lbl.Size = new Size(80, 21);
lbl.Location = new Point(10 + (80 + 120 + iControlSpace) * i, 25 + (21 + 10) * j);
//控件命名规则:lbl+字段名+数据行号
lbl.Name = "lbl" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
lbl.TextAlign = ContentAlignment.BottomLeft;
//当控件类型为复选框时不创建Lable控件
if (sColumnType != "K")
{
lbl.Text = dr[iControl]["sColumnCaption"].ToString();
}
grbFilter.Controls.Add(lbl);
//不同类型创建不同控件
switch (sColumnType)
{
//字符型,数字型
case "S":
case "N":
{
DevExpress.XtraEditors.TextEdit txt = new DevExpress.XtraEditors.TextEdit();
txt.Size = new Size(120, 21);
txt.Name = "txt" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
txt.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
txt.Text = oColumnDefaultValue.ToString();
//用Tag来存储查询类型
txt.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString();
grbFilter.Controls.Add(txt);
break;
//.........这里部分代码省略.........
示例14: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
this.labelControlDescription = new DevExpress.XtraEditors.LabelControl();
this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
this.labelControlPayType = new DevExpress.XtraEditors.LabelControl();
this.labelControlVatType = new DevExpress.XtraEditors.LabelControl();
this.labelControlbaht2 = new DevExpress.XtraEditors.LabelControl();
this.labelControlMonthPrice = new DevExpress.XtraEditors.LabelControl();
this.labelControlDailyPrice = new DevExpress.XtraEditors.LabelControl();
this.labelControlbaht1 = new DevExpress.XtraEditors.LabelControl();
this.lookUpEditPayType = new DevExpress.XtraEditors.LookUpEdit();
this.lookUpEditVatType = new DevExpress.XtraEditors.LookUpEdit();
this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
this.labelControlItemName = new DevExpress.XtraEditors.LabelControl();
this.textEditItemName = new DevExpress.XtraEditors.TextEdit();
this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.memoEditDescription = new DevExpress.XtraEditors.MemoEdit();
this.textEditDailyPrice = new DevExpress.XtraEditors.TextEdit();
this.textEditMonthPrice = new DevExpress.XtraEditors.TextEdit();
this.bttSave = new DevExpress.XtraEditors.SimpleButton();
this.titleTabAddition = new DevExpress.XtraEditors.SimpleButton();
((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
this.panelControl2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
this.panelControl1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.memoEditDescription.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditDailyPrice.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditMonthPrice.Properties)).BeginInit();
this.SuspendLayout();
//
// labelControl9
//
this.labelControl9.Appearance.ForeColor = System.Drawing.Color.Red;
this.labelControl9.Location = new System.Drawing.Point(379, 133);
this.labelControl9.Name = "labelControl9";
this.labelControl9.Size = new System.Drawing.Size(6, 13);
this.labelControl9.TabIndex = 411;
this.labelControl9.Text = "*";
//
// labelControlRequired
//
this.labelControlRequired.Appearance.ForeColor = System.Drawing.Color.Red;
this.labelControlRequired.Location = new System.Drawing.Point(115, 272);
this.labelControlRequired.Name = "labelControlRequired";
this.labelControlRequired.Size = new System.Drawing.Size(50, 13);
this.labelControlRequired.TabIndex = 412;
this.labelControlRequired.Text = "* โปรดระบุ";
//
// labelControl6
//
this.labelControl6.Appearance.ForeColor = System.Drawing.Color.Red;
this.labelControl6.Location = new System.Drawing.Point(379, 29);
this.labelControl6.Name = "labelControl6";
this.labelControl6.Size = new System.Drawing.Size(6, 13);
this.labelControl6.TabIndex = 411;
this.labelControl6.Text = "*";
//
// labelControlDescription
//
this.labelControlDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelControlDescription.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
this.labelControlDescription.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
this.labelControlDescription.Location = new System.Drawing.Point(60, 159);
this.labelControlDescription.Name = "labelControlDescription";
this.labelControlDescription.Size = new System.Drawing.Size(105, 20);
this.labelControlDescription.TabIndex = 333;
this.labelControlDescription.Text = "รายละเอียดเพิ่มเติม :";
//
// labelControl8
//
this.labelControl8.Appearance.ForeColor = System.Drawing.Color.Red;
this.labelControl8.Location = new System.Drawing.Point(379, 55);
this.labelControl8.Name = "labelControl8";
this.labelControl8.Size = new System.Drawing.Size(6, 13);
this.labelControl8.TabIndex = 411;
this.labelControl8.Text = "*";
//
// labelControlPayType
//
this.labelControlPayType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelControlPayType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
this.labelControlPayType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
this.labelControlPayType.Location = new System.Drawing.Point(60, 55);
this.labelControlPayType.Name = "labelControlPayType";
this.labelControlPayType.Size = new System.Drawing.Size(105, 20);
this.labelControlPayType.TabIndex = 331;
this.labelControlPayType.Text = "รูปแบบค่าใช้จ่าย :";
//
// labelControlVatType
//.........这里部分代码省略.........
示例15: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.txtContactPerson = new DevExpress.XtraEditors.TextEdit();
this.txtMobileNo = new DevExpress.XtraEditors.TextEdit();
this.label2 = new System.Windows.Forms.Label();
this.txtEmail = new DevExpress.XtraEditors.TextEdit();
this.label3 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.sbtnSave = new DevExpress.XtraEditors.SimpleButton();
this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
this.txtBranchCode = new DevExpress.XtraEditors.TextEdit();
this.rbFemale = new System.Windows.Forms.RadioButton();
this.rbMale = new System.Windows.Forms.RadioButton();
this.luedtMediaSource = new DevExpress.XtraEditors.LookUpEdit();
this.luedtMediaSourceCategory = new DevExpress.XtraEditors.LookUpEdit();
this.label47 = new System.Windows.Forms.Label();
this.txtNRICFIN = new DevExpress.XtraEditors.TextEdit();
this.dateedtDOB = new DevExpress.XtraEditors.DateEdit();
this.label4 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txtMediaSource = new DevExpress.XtraEditors.TextEdit();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.luedtAssigntoStaff = new DevExpress.XtraEditors.LookUpEdit();
this.rtxtRemarks = new DevExpress.XtraEditors.MemoEdit();
this.label9 = new System.Windows.Forms.Label();
this.cbStatus = new System.Windows.Forms.ComboBox();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.cbPhoneCall = new System.Windows.Forms.CheckBox();
this.cbSMS = new System.Windows.Forms.CheckBox();
this.cbEmail = new System.Windows.Forms.CheckBox();
this.label12 = new System.Windows.Forms.Label();
this.rbDNCYes = new System.Windows.Forms.RadioButton();
this.rbDNCNo = new System.Windows.Forms.RadioButton();
this.panel1 = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.label13 = new System.Windows.Forms.Label();
this.gbAppt = new System.Windows.Forms.GroupBox();
this.luedtServedBy = new DevExpress.XtraEditors.LookUpEdit();
this.label17 = new System.Windows.Forms.Label();
this.dateedtEndTime = new DevExpress.XtraEditors.DateEdit();
this.dateedtStartTime = new DevExpress.XtraEditors.DateEdit();
this.dateedtDate = new DevExpress.XtraEditors.DateEdit();
this.label14 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.chkMakeAppt = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtMobileNo.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtBranchCode.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.luedtMediaSource.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.luedtMediaSourceCategory.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtNRICFIN.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties.VistaTimeProperties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtMediaSource.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.luedtAssigntoStaff.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.rtxtRemarks.Properties)).BeginInit();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
this.gbAppt.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.luedtServedBy.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties.VistaTimeProperties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties.VistaTimeProperties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties.VistaTimeProperties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(10, 18);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(90, 18);
this.label1.TabIndex = 214;
this.label1.Text = "Contact Person:";
//
// txtContactPerson
//
this.txtContactPerson.EditValue = "";
this.txtContactPerson.Location = new System.Drawing.Point(121, 15);
this.txtContactPerson.Name = "txtContactPerson";
this.txtContactPerson.Properties.MaxLength = 50;
this.txtContactPerson.Size = new System.Drawing.Size(442, 20);
this.txtContactPerson.TabIndex = 0;
//
// txtMobileNo
//
this.txtMobileNo.EditValue = "";
this.txtMobileNo.Location = new System.Drawing.Point(121, 67);
this.txtMobileNo.Name = "txtMobileNo";
this.txtMobileNo.Properties.MaxLength = 50;
//.........这里部分代码省略.........