本文整理汇总了C#中DevExpress.XtraEditors.SimpleButton类的典型用法代码示例。如果您正苦于以下问题:C# DevExpress.XtraEditors.SimpleButton类的具体用法?C# DevExpress.XtraEditors.SimpleButton怎么用?C# DevExpress.XtraEditors.SimpleButton使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DevExpress.XtraEditors.SimpleButton类属于命名空间,在下文中一共展示了DevExpress.XtraEditors.SimpleButton类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Build
protected override void Build(XOTableContext AppItemContext)
{
base.Build(AppItemContext);
_searchButton = new DevExpress.XtraEditors.SimpleButton() { Name = "searchButton", Text = "Искать" };
this.AddControl(_searchButton, _searchButton.Name, "Поиск");
}
示例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();
this.tmrCloseWindow = new System.Windows.Forms.Timer(this.components);
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
this.SuspendLayout();
//
// tmrCloseWindow
//
this.tmrCloseWindow.Interval = 5000;
this.tmrCloseWindow.Tick += new System.EventHandler(this.tmrCloseWindow_Tick);
//
// labelControl1
//
this.labelControl1.Location = new System.Drawing.Point(86, 92);
this.labelControl1.Name = "labelControl1";
this.labelControl1.Size = new System.Drawing.Size(71, 13);
this.labelControl1.TabIndex = 0;
this.labelControl1.Text = "Registered To:";
//
// simpleButton1
//
this.simpleButton1.Location = new System.Drawing.Point(307, 148);
this.simpleButton1.Name = "simpleButton1";
this.simpleButton1.Size = new System.Drawing.Size(75, 23);
this.simpleButton1.TabIndex = 1;
this.simpleButton1.Text = "Close [X]";
//
// simpleButton2
//
this.simpleButton2.Location = new System.Drawing.Point(226, 148);
this.simpleButton2.Name = "simpleButton2";
this.simpleButton2.Size = new System.Drawing.Size(75, 23);
this.simpleButton2.TabIndex = 2;
this.simpleButton2.Text = "Register";
//
// frmSplash
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(394, 183);
this.Controls.Add(this.simpleButton2);
this.Controls.Add(this.simpleButton1);
this.Controls.Add(this.labelControl1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "frmSplash";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "frmSplash";
this.TopMost = true;
this.Load += new System.EventHandler(this.frmSplash_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
开发者ID:SmartSimTech,项目名称:SSTCP,代码行数:60,代码来源:frmSplash.Designer+(Tyler+Reed's+conflicted+copy+2010-12-18).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.sBtnNewLocker = new DevExpress.XtraEditors.SimpleButton();
this.sBtnReturnLocker = new DevExpress.XtraEditors.SimpleButton();
this.sBtnExtendLocker = new DevExpress.XtraEditors.SimpleButton();
this.SuspendLayout();
//
// sBtnNewLocker
//
this.sBtnNewLocker.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
this.sBtnNewLocker.Appearance.Options.UseFont = true;
this.sBtnNewLocker.Location = new System.Drawing.Point(12, 24);
this.sBtnNewLocker.Name = "sBtnNewLocker";
this.sBtnNewLocker.Size = new System.Drawing.Size(144, 48);
this.sBtnNewLocker.TabIndex = 0;
this.sBtnNewLocker.Text = "New Locker(s)";
this.sBtnNewLocker.Click += new System.EventHandler(this.sBtnNew_ExtendLocker_Click);
//
// sBtnReturnLocker
//
this.sBtnReturnLocker.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
this.sBtnReturnLocker.Appearance.Options.UseFont = true;
this.sBtnReturnLocker.Location = new System.Drawing.Point(330, 24);
this.sBtnReturnLocker.Name = "sBtnReturnLocker";
this.sBtnReturnLocker.Size = new System.Drawing.Size(160, 48);
this.sBtnReturnLocker.TabIndex = 1;
this.sBtnReturnLocker.Text = "Return Locker(s)";
this.sBtnReturnLocker.Click += new System.EventHandler(this.sBtnReturnLocker_Click);
//
// sBtnExtendLocker
//
this.sBtnExtendLocker.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
this.sBtnExtendLocker.Appearance.Options.UseFont = true;
this.sBtnExtendLocker.Location = new System.Drawing.Point(164, 24);
this.sBtnExtendLocker.Name = "sBtnExtendLocker";
this.sBtnExtendLocker.Size = new System.Drawing.Size(160, 48);
this.sBtnExtendLocker.TabIndex = 2;
this.sBtnExtendLocker.Text = "Extend Locker(s)";
this.sBtnExtendLocker.Click += new System.EventHandler(this.simpleButton1_Click);
//
// FormLockerAction
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(500, 94);
this.Controls.Add(this.sBtnExtendLocker);
this.Controls.Add(this.sBtnReturnLocker);
this.Controls.Add(this.sBtnNewLocker);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormLockerAction";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Locker Action";
this.ResumeLayout(false);
}
示例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.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();
}
示例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.sBtn_ForgetCardRefund = new DevExpress.XtraEditors.SimpleButton();
this.sBtnNew_ForgetCardDeposit = new DevExpress.XtraEditors.SimpleButton();
this.SuspendLayout();
//
// sBtn_ForgetCardRefund
//
this.sBtn_ForgetCardRefund.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
this.sBtn_ForgetCardRefund.Appearance.Options.UseFont = true;
this.sBtn_ForgetCardRefund.Location = new System.Drawing.Point(307, 23);
this.sBtn_ForgetCardRefund.Name = "sBtn_ForgetCardRefund";
this.sBtn_ForgetCardRefund.Size = new System.Drawing.Size(186, 48);
this.sBtn_ForgetCardRefund.TabIndex = 3;
this.sBtn_ForgetCardRefund.Text = "Forget Card Refund";
this.sBtn_ForgetCardRefund.Click += new System.EventHandler(this.sBtn_ForgetCardRefund_Click);
//
// sBtnNew_ForgetCardDeposit
//
this.sBtnNew_ForgetCardDeposit.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.sBtnNew_ForgetCardDeposit.Appearance.Options.UseFont = true;
this.sBtnNew_ForgetCardDeposit.Location = new System.Drawing.Point(51, 23);
this.sBtnNew_ForgetCardDeposit.Name = "sBtnNew_ForgetCardDeposit";
this.sBtnNew_ForgetCardDeposit.Size = new System.Drawing.Size(208, 48);
this.sBtnNew_ForgetCardDeposit.TabIndex = 2;
this.sBtnNew_ForgetCardDeposit.Text = "Forget Card Deposit";
this.sBtnNew_ForgetCardDeposit.Click += new System.EventHandler(this.sBtnNew_ForgetCardDeposit_Click);
//
// FormForgetCardAction
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(544, 94);
this.Controls.Add(this.sBtn_ForgetCardRefund);
this.Controls.Add(this.sBtnNew_ForgetCardDeposit);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormForgetCardAction";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Forget Card Action";
this.ResumeLayout(false);
}
示例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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FormNewMemberCreditPackageUsage));
this.lkpEdtPackageCode = new DevExpress.XtraEditors.LookUpEdit();
this.label1 = new System.Windows.Forms.Label();
this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
this.label3 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageCode.Properties)).BeginInit();
this.SuspendLayout();
//
// lkpEdtPackageCode
//
this.lkpEdtPackageCode.Anchor = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("lkpEdtPackageCode.Anchor")));
this.lkpEdtPackageCode.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("lkpEdtPackageCode.BackgroundImage")));
this.lkpEdtPackageCode.Dock = ((System.Windows.Forms.DockStyle)(resources.GetObject("lkpEdtPackageCode.Dock")));
this.lkpEdtPackageCode.EditValue = ((object)(resources.GetObject("lkpEdtPackageCode.EditValue")));
this.lkpEdtPackageCode.Enabled = ((bool)(resources.GetObject("lkpEdtPackageCode.Enabled")));
this.lkpEdtPackageCode.ImeMode = ((System.Windows.Forms.ImeMode)(resources.GetObject("lkpEdtPackageCode.ImeMode")));
this.lkpEdtPackageCode.Location = ((System.Drawing.Point)(resources.GetObject("lkpEdtPackageCode.Location")));
this.lkpEdtPackageCode.Name = "lkpEdtPackageCode";
//
// lkpEdtPackageCode.Properties
//
this.lkpEdtPackageCode.Properties.AccessibleDescription = resources.GetString("lkpEdtPackageCode.Properties.AccessibleDescription");
this.lkpEdtPackageCode.Properties.AccessibleName = resources.GetString("lkpEdtPackageCode.Properties.AccessibleName");
this.lkpEdtPackageCode.Properties.AutoHeight = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.AutoHeight")));
this.lkpEdtPackageCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.lkpEdtPackageCode.Properties.Mask.AutoComplete = ((DevExpress.XtraEditors.Mask.AutoCompleteType)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.AutoComplete")));
this.lkpEdtPackageCode.Properties.Mask.BeepOnError = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.BeepOnError")));
this.lkpEdtPackageCode.Properties.Mask.EditMask = resources.GetString("lkpEdtPackageCode.Properties.Mask.EditMask");
this.lkpEdtPackageCode.Properties.Mask.IgnoreMaskBlank = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.IgnoreMaskBlank")));
this.lkpEdtPackageCode.Properties.Mask.MaskType = ((DevExpress.XtraEditors.Mask.MaskType)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.MaskType")));
this.lkpEdtPackageCode.Properties.Mask.PlaceHolder = ((char)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.PlaceHolder")));
this.lkpEdtPackageCode.Properties.Mask.SaveLiteral = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.SaveLiteral")));
this.lkpEdtPackageCode.Properties.Mask.ShowPlaceHolders = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.ShowPlaceHolders")));
this.lkpEdtPackageCode.Properties.Mask.UseMaskAsDisplayFormat = ((bool)(resources.GetObject("lkpEdtPackageCode.Properties.Mask.UseMaskAsDisplayFormat")));
this.lkpEdtPackageCode.Properties.NullText = resources.GetString("lkpEdtPackageCode.Properties.NullText");
this.lkpEdtPackageCode.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("lkpEdtPackageCode.RightToLeft")));
this.lkpEdtPackageCode.Size = ((System.Drawing.Size)(resources.GetObject("lkpEdtPackageCode.Size")));
this.lkpEdtPackageCode.TabIndex = ((int)(resources.GetObject("lkpEdtPackageCode.TabIndex")));
this.lkpEdtPackageCode.ToolTip = resources.GetString("lkpEdtPackageCode.ToolTip");
this.lkpEdtPackageCode.ToolTipIconType = ((DevExpress.Utils.ToolTipIconType)(resources.GetObject("lkpEdtPackageCode.ToolTipIconType")));
this.lkpEdtPackageCode.ToolTipTitle = resources.GetString("lkpEdtPackageCode.ToolTipTitle");
this.lkpEdtPackageCode.Visible = ((bool)(resources.GetObject("lkpEdtPackageCode.Visible")));
this.lkpEdtPackageCode.EditValueChanged += new System.EventHandler(this.lkpEdtPackageCode_EditValueChanged);
//
// label1
//
this.label1.AccessibleDescription = resources.GetString("label1.AccessibleDescription");
this.label1.AccessibleName = resources.GetString("label1.AccessibleName");
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("label1.Anchor")));
this.label1.AutoSize = ((bool)(resources.GetObject("label1.AutoSize")));
this.label1.Dock = ((System.Windows.Forms.DockStyle)(resources.GetObject("label1.Dock")));
this.label1.Enabled = ((bool)(resources.GetObject("label1.Enabled")));
this.label1.Font = ((System.Drawing.Font)(resources.GetObject("label1.Font")));
this.label1.Image = ((System.Drawing.Image)(resources.GetObject("label1.Image")));
this.label1.ImageAlign = ((System.Drawing.ContentAlignment)(resources.GetObject("label1.ImageAlign")));
this.label1.ImageIndex = ((int)(resources.GetObject("label1.ImageIndex")));
this.label1.ImeMode = ((System.Windows.Forms.ImeMode)(resources.GetObject("label1.ImeMode")));
this.label1.Location = ((System.Drawing.Point)(resources.GetObject("label1.Location")));
this.label1.Name = "label1";
this.label1.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("label1.RightToLeft")));
this.label1.Size = ((System.Drawing.Size)(resources.GetObject("label1.Size")));
this.label1.TabIndex = ((int)(resources.GetObject("label1.TabIndex")));
this.label1.Text = resources.GetString("label1.Text");
this.label1.TextAlign = ((System.Drawing.ContentAlignment)(resources.GetObject("label1.TextAlign")));
this.label1.Visible = ((bool)(resources.GetObject("label1.Visible")));
//
// simpleButtonCancel
//
this.simpleButtonCancel.AccessibleDescription = resources.GetString("simpleButtonCancel.AccessibleDescription");
this.simpleButtonCancel.AccessibleName = resources.GetString("simpleButtonCancel.AccessibleName");
this.simpleButtonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("simpleButtonCancel.Anchor")));
this.simpleButtonCancel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("simpleButtonCancel.BackgroundImage")));
this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.simpleButtonCancel.Dock = ((System.Windows.Forms.DockStyle)(resources.GetObject("simpleButtonCancel.Dock")));
this.simpleButtonCancel.Enabled = ((bool)(resources.GetObject("simpleButtonCancel.Enabled")));
this.simpleButtonCancel.ImeMode = ((System.Windows.Forms.ImeMode)(resources.GetObject("simpleButtonCancel.ImeMode")));
this.simpleButtonCancel.Location = ((System.Drawing.Point)(resources.GetObject("simpleButtonCancel.Location")));
this.simpleButtonCancel.Name = "simpleButtonCancel";
this.simpleButtonCancel.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("simpleButtonCancel.RightToLeft")));
this.simpleButtonCancel.Size = ((System.Drawing.Size)(resources.GetObject("simpleButtonCancel.Size")));
this.simpleButtonCancel.TabIndex = ((int)(resources.GetObject("simpleButtonCancel.TabIndex")));
this.simpleButtonCancel.Text = resources.GetString("simpleButtonCancel.Text");
this.simpleButtonCancel.ToolTip = resources.GetString("simpleButtonCancel.ToolTip");
this.simpleButtonCancel.ToolTipIconType = ((DevExpress.Utils.ToolTipIconType)(resources.GetObject("simpleButtonCancel.ToolTipIconType")));
this.simpleButtonCancel.ToolTipTitle = resources.GetString("simpleButtonCancel.ToolTipTitle");
this.simpleButtonCancel.Visible = ((bool)(resources.GetObject("simpleButtonCancel.Visible")));
//
// simpleButtonOK
//
this.simpleButtonOK.AccessibleDescription = resources.GetString("simpleButtonOK.AccessibleDescription");
this.simpleButtonOK.AccessibleName = resources.GetString("simpleButtonOK.AccessibleName");
this.simpleButtonOK.Anchor = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("simpleButtonOK.Anchor")));
//.........这里部分代码省略.........
示例7: 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(EditorUserInRoleFrm));
this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
this.TxtNote = new System.Windows.Forms.TextBox();
this.CLSCRole = new DevExpress.XtraEditors.CheckedListBoxControl();
this.BtnUpdate = new DevExpress.XtraEditors.SimpleButton();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.BtnRefresh = new DevExpress.XtraEditors.SimpleButton();
((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
this.groupControl2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.CLSCRole)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
this.groupControl1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
this.SuspendLayout();
//
// groupControl2
//
this.groupControl2.Controls.Add(this.TxtNote);
this.groupControl2.Controls.Add(this.CLSCRole);
this.groupControl2.Controls.Add(this.BtnUpdate);
this.groupControl2.Controls.Add(this.labelControl2);
this.groupControl2.Location = new System.Drawing.Point(9, 75);
this.groupControl2.Name = "groupControl2";
this.groupControl2.Size = new System.Drawing.Size(379, 272);
this.groupControl2.TabIndex = 8;
this.groupControl2.Text = "تعديل سماحيات المستخدم";
//
// TxtNote
//
this.TxtNote.BackColor = System.Drawing.SystemColors.ControlLight;
this.TxtNote.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.TxtNote.ForeColor = System.Drawing.Color.Green;
this.TxtNote.Location = new System.Drawing.Point(5, 24);
this.TxtNote.Multiline = true;
this.TxtNote.Name = "TxtNote";
this.TxtNote.ReadOnly = true;
this.TxtNote.Size = new System.Drawing.Size(140, 207);
this.TxtNote.TabIndex = 7;
this.TxtNote.Text = ".";
//
// CLSCRole
//
this.CLSCRole.Location = new System.Drawing.Point(151, 24);
this.CLSCRole.Name = "CLSCRole";
this.CLSCRole.Size = new System.Drawing.Size(155, 207);
this.CLSCRole.TabIndex = 4;
this.CLSCRole.ItemCheck += new DevExpress.XtraEditors.Controls.ItemCheckEventHandler(this.CLSCRole_ItemCheck);
this.CLSCRole.SelectedIndexChanged += new System.EventHandler(this.CLSCRole_SelectedIndexChanged);
//
// BtnUpdate
//
this.BtnUpdate.Enabled = false;
this.BtnUpdate.Location = new System.Drawing.Point(196, 237);
this.BtnUpdate.Name = "BtnUpdate";
this.BtnUpdate.Size = new System.Drawing.Size(110, 23);
this.BtnUpdate.TabIndex = 3;
this.BtnUpdate.Text = "تعديل";
this.BtnUpdate.Click += new System.EventHandler(this.BtnUpdate_Click);
//
// labelControl2
//
this.labelControl2.Location = new System.Drawing.Point(312, 24);
this.labelControl2.Name = "labelControl2";
this.labelControl2.Size = new System.Drawing.Size(62, 13);
this.labelControl2.TabIndex = 0;
this.labelControl2.Text = "السماحيات";
//
// groupControl1
//
this.groupControl1.Controls.Add(this.LUEItems);
this.groupControl1.Controls.Add(this.labelControl1);
this.groupControl1.Location = new System.Drawing.Point(9, 10);
this.groupControl1.Name = "groupControl1";
this.groupControl1.Size = new System.Drawing.Size(379, 59);
this.groupControl1.TabIndex = 7;
this.groupControl1.Text = "جميع المستخدمين";
//
// LUEItems
//
this.LUEItems.Location = new System.Drawing.Point(61, 28);
this.LUEItems.Name = "LUEItems";
this.LUEItems.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.LUEItems.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
new DevExpress.XtraEditors.Controls.LookUpColumnInfo("UserName", "User Name")});
this.LUEItems.Properties.NullText = "";
this.LUEItems.Size = new System.Drawing.Size(173, 19);
this.LUEItems.TabIndex = 0;
this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
//
// labelControl1
//.........这里部分代码省略.........
示例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.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
this.gridControlData = new DevExpress.XtraGrid.GridControl();
this.sp001BindingSource = new System.Windows.Forms.BindingSource(this.components);
this.dsQueries = new RetirementCenter.DataSources.dsQueries();
this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
this.colTotal = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemTextEditn2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
this.colBankMoney = new DevExpress.XtraGrid.Columns.GridColumn();
this.colAmantaMoney = new DevExpress.XtraGrid.Columns.GridColumn();
this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
this.ccbeSarfType = new DevExpress.XtraEditors.CheckedComboBoxEdit();
this.cDSarfTypeedadBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.ccbeDof = new DevExpress.XtraEditors.CheckedComboBoxEdit();
this.tBLDofatSarfBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
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.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
this.tBLDofatSarfTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.TBLDofatSarfTableAdapter();
this.dxvp = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
this.sp_001TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.sp_001TableAdapter();
this.cDSarfTypeedadTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.CDSarfTypeedadTableAdapter();
((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.sp001BindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
this.layoutControl1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.ccbeSarfType.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.cDSarfTypeedadBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.ccbeDof.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tBLDofatSarfBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).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.layoutControlItem5)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dxvp)).BeginInit();
this.SuspendLayout();
//
// gridControlData
//
this.gridControlData.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.gridControlData.DataSource = this.sp001BindingSource;
this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
this.gridControlData.Location = new System.Drawing.Point(12, 38);
this.gridControlData.MainView = this.gridViewData;
this.gridControlData.Name = "gridControlData";
this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
this.repositoryItemTextEditn2});
this.gridControlData.Size = new System.Drawing.Size(914, 523);
this.gridControlData.TabIndex = 1;
this.gridControlData.UseEmbeddedNavigator = true;
this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.gridViewData});
//
// sp001BindingSource
//
this.sp001BindingSource.DataMember = "sp_001";
this.sp001BindingSource.DataSource = this.dsQueries;
//
// dsQueries
//
this.dsQueries.DataSetName = "dsQueries";
this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// gridViewData
//
this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
//.........这里部分代码省略.........
示例9: 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(Form_help_gridproducto_cm));
this.cbo_criterios = new System.Windows.Forms.ComboBox();
this.txt_busqueda = new System.Windows.Forms.TextBox();
this.gridgeneral = new System.Windows.Forms.DataGridView();
this.label8 = new System.Windows.Forms.Label();
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.btnSeleccion = new DevExpress.XtraEditors.SimpleButton();
this.btnbuscar = new DevExpress.XtraEditors.SimpleButton();
((System.ComponentModel.ISupportInitialize)(this.gridgeneral)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
this.panelControl1.SuspendLayout();
this.SuspendLayout();
//
// cbo_criterios
//
this.cbo_criterios.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbo_criterios.FormattingEnabled = true;
this.cbo_criterios.Location = new System.Drawing.Point(97, 9);
this.cbo_criterios.Name = "cbo_criterios";
this.cbo_criterios.Size = new System.Drawing.Size(136, 21);
this.cbo_criterios.TabIndex = 13;
//
// txt_busqueda
//
this.txt_busqueda.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
this.txt_busqueda.Location = new System.Drawing.Point(237, 9);
this.txt_busqueda.Name = "txt_busqueda";
this.txt_busqueda.Size = new System.Drawing.Size(309, 20);
this.txt_busqueda.TabIndex = 1;
this.txt_busqueda.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_busqueda_KeyUp);
//
// gridgeneral
//
this.gridgeneral.AllowUserToAddRows = false;
this.gridgeneral.AllowUserToDeleteRows = false;
this.gridgeneral.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
this.gridgeneral.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.gridgeneral.Location = new System.Drawing.Point(0, 45);
this.gridgeneral.MultiSelect = false;
this.gridgeneral.Name = "gridgeneral";
this.gridgeneral.Size = new System.Drawing.Size(781, 278);
this.gridgeneral.TabIndex = 42;
this.gridgeneral.RowHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.gridgeneral_RowHeaderMouseClick);
this.gridgeneral.DoubleClick += new System.EventHandler(this.gridgeneral_DoubleClick);
this.gridgeneral.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridgeneral_KeyDown);
//
// label8
//
this.label8.AutoSize = true;
this.label8.BackColor = System.Drawing.Color.Transparent;
this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label8.ForeColor = System.Drawing.Color.White;
this.label8.Location = new System.Drawing.Point(15, 13);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(72, 13);
this.label8.TabIndex = 28;
this.label8.Text = "Buscar por:";
//
// panelControl1
//
this.panelControl1.Appearance.BackColor = System.Drawing.Color.Teal;
this.panelControl1.Appearance.BackColor2 = System.Drawing.Color.White;
this.panelControl1.Appearance.Options.UseBackColor = true;
this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
this.panelControl1.Controls.Add(this.cbo_criterios);
this.panelControl1.Controls.Add(this.txt_busqueda);
this.panelControl1.Controls.Add(this.label8);
this.panelControl1.Location = new System.Drawing.Point(0, 4);
this.panelControl1.Name = "panelControl1";
this.panelControl1.Size = new System.Drawing.Size(578, 38);
this.panelControl1.TabIndex = 45;
//
// btnSeleccion
//
this.btnSeleccion.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnSeleccion.Image = ((System.Drawing.Image)(resources.GetObject("btnSeleccion.Image")));
this.btnSeleccion.Location = new System.Drawing.Point(667, 4);
this.btnSeleccion.Name = "btnSeleccion";
this.btnSeleccion.Size = new System.Drawing.Size(113, 38);
this.btnSeleccion.TabIndex = 52;
this.btnSeleccion.Text = "&Seleccionar";
this.btnSeleccion.Click += new System.EventHandler(this.btnSeleccion_Click);
//
// btnbuscar
//
this.btnbuscar.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnbuscar.Image = ((System.Drawing.Image)(resources.GetObject("btnbuscar.Image")));
this.btnbuscar.Location = new System.Drawing.Point(582, 4);
this.btnbuscar.Name = "btnbuscar";
this.btnbuscar.Size = new System.Drawing.Size(81, 38);
this.btnbuscar.TabIndex = 51;
this.btnbuscar.Text = "&Buscar";
this.btnbuscar.Click += new System.EventHandler(this.btnbuscar_Click);
//
//.........这里部分代码省略.........
示例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(Frm_catplanilla));
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.btn_busqueda = new DevExpress.XtraEditors.SimpleButton();
this.dgb_catplanilla = new System.Windows.Forms.DataGridView();
this.label5 = new System.Windows.Forms.Label();
this.txtbusqueda = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.txtcatplanillaid = new System.Windows.Forms.TextBox();
this.txtcatplanillaname = new System.Windows.Forms.TextBox();
this.Botonera = new System.Windows.Forms.ToolStrip();
this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
this.btn_editar = new System.Windows.Forms.ToolStripButton();
this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
this.btn_grabar = new System.Windows.Forms.ToolStripButton();
this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.btn_clave = new System.Windows.Forms.ToolStripButton();
this.btn_log = new System.Windows.Forms.ToolStripButton();
this.btn_salir = new System.Windows.Forms.ToolStripButton();
this.cateplanid = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cateplanname = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgb_catplanilla)).BeginInit();
this.groupBox1.SuspendLayout();
this.Botonera.SuspendLayout();
this.SuspendLayout();
//
// groupBox2
//
this.groupBox2.Controls.Add(this.btn_busqueda);
this.groupBox2.Controls.Add(this.dgb_catplanilla);
this.groupBox2.Controls.Add(this.label5);
this.groupBox2.Controls.Add(this.txtbusqueda);
this.groupBox2.Location = new System.Drawing.Point(5, 122);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(445, 254);
this.groupBox2.TabIndex = 115;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "»» Busqueda";
//
// btn_busqueda
//
this.btn_busqueda.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
this.btn_busqueda.Appearance.Options.UseFont = true;
this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
this.btn_busqueda.Image = ((System.Drawing.Image)(resources.GetObject("btn_busqueda.Image")));
this.btn_busqueda.Location = new System.Drawing.Point(357, 18);
this.btn_busqueda.Name = "btn_busqueda";
this.btn_busqueda.Size = new System.Drawing.Size(73, 22);
this.btn_busqueda.TabIndex = 115;
this.btn_busqueda.Text = "&Buscar";
this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
//
// dgb_catplanilla
//
this.dgb_catplanilla.AllowUserToAddRows = false;
this.dgb_catplanilla.AllowUserToDeleteRows = false;
this.dgb_catplanilla.AllowUserToResizeColumns = false;
this.dgb_catplanilla.AllowUserToResizeRows = false;
this.dgb_catplanilla.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle7.Font = new System.Drawing.Font("Tahoma", 8.25F);
dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgb_catplanilla.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
this.dgb_catplanilla.ColumnHeadersHeight = 20;
this.dgb_catplanilla.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.cateplanid,
this.cateplanname});
this.dgb_catplanilla.Location = new System.Drawing.Point(10, 46);
this.dgb_catplanilla.MultiSelect = false;
this.dgb_catplanilla.Name = "dgb_catplanilla";
this.dgb_catplanilla.RowHeadersVisible = false;
this.dgb_catplanilla.RowHeadersWidth = 10;
dataGridViewCellStyle9.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.dgb_catplanilla.RowsDefaultCellStyle = dataGridViewCellStyle9;
this.dgb_catplanilla.RowTemplate.Height = 20;
this.dgb_catplanilla.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
this.dgb_catplanilla.Size = new System.Drawing.Size(422, 202);
this.dgb_catplanilla.TabIndex = 19;
this.dgb_catplanilla.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_catplanilla_CellClick);
this.dgb_catplanilla.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_catplanilla_CellEnter);
this.dgb_catplanilla.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_catplanilla_CellLeave);
this.dgb_catplanilla.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgb_catplanilla_KeyUp);
//.........这里部分代码省略.........
示例11: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
this.label4 = new System.Windows.Forms.Label();
this.lkpEdtEmployeeID = new DevExpress.XtraEditors.LookUpEdit();
this.lkpEdtBranchCode = new DevExpress.XtraEditors.LookUpEdit();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.lkpEdtPackageID = new DevExpress.XtraEditors.LookUpEdit();
this.dtEdtStartTime = new DevExpress.XtraEditors.DateEdit();
this.label3 = new System.Windows.Forms.Label();
this.dtEditDate = new DevExpress.XtraEditors.DateEdit();
((System.ComponentModel.ISupportInitialize)(this.lkpEdtEmployeeID.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageID.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).BeginInit();
this.SuspendLayout();
//
// simpleButtonCancel
//
this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.simpleButtonCancel.Location = new System.Drawing.Point(188, 156);
this.simpleButtonCancel.Name = "simpleButtonCancel";
this.simpleButtonCancel.TabIndex = 53;
this.simpleButtonCancel.Text = "Cancel";
//
// simpleButtonOK
//
this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.simpleButtonOK.Location = new System.Drawing.Point(98, 156);
this.simpleButtonOK.Name = "simpleButtonOK";
this.simpleButtonOK.TabIndex = 52;
this.simpleButtonOK.Text = "OK";
this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
//
// label4
//
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.label4.Location = new System.Drawing.Point(8, 112);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(93, 23);
this.label4.TabIndex = 60;
this.label4.Text = "Personal Trainer";
//
// lkpEdtEmployeeID
//
this.lkpEdtEmployeeID.EditValue = "";
this.lkpEdtEmployeeID.Location = new System.Drawing.Point(124, 114);
this.lkpEdtEmployeeID.Name = "lkpEdtEmployeeID";
//
// lkpEdtEmployeeID.Properties
//
this.lkpEdtEmployeeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.lkpEdtEmployeeID.Size = new System.Drawing.Size(202, 20);
this.lkpEdtEmployeeID.TabIndex = 59;
this.lkpEdtEmployeeID.EditValueChanged += new System.EventHandler(this.lkpEdtEmployeeID_EditValueChanged);
//
// lkpEdtBranchCode
//
this.lkpEdtBranchCode.EditValue = "";
this.lkpEdtBranchCode.Location = new System.Drawing.Point(124, 34);
this.lkpEdtBranchCode.Name = "lkpEdtBranchCode";
//
// lkpEdtBranchCode.Properties
//
this.lkpEdtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.lkpEdtBranchCode.Size = new System.Drawing.Size(202, 20);
this.lkpEdtBranchCode.TabIndex = 57;
this.lkpEdtBranchCode.EditValueChanged += new System.EventHandler(this.lkpEdtBranchCode_EditValueChanged);
//
// label2
//
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.label2.Location = new System.Drawing.Point(8, 34);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(72, 23);
this.label2.TabIndex = 55;
this.label2.Text = "Branch";
//
// label1
//
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.label1.Location = new System.Drawing.Point(8, 60);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(72, 23);
this.label1.TabIndex = 54;
this.label1.Text = "Date";
//
// label5
//
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
//.........这里部分代码省略.........
示例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.label1 = new System.Windows.Forms.Label();
this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
this.panelSun = new System.Windows.Forms.Panel();
this.panelMonday = new System.Windows.Forms.Panel();
this.lblMon = new System.Windows.Forms.Label();
this.txtMonday = new System.Windows.Forms.Label();
this.panel4 = new System.Windows.Forms.Panel();
this.lblTUE = new System.Windows.Forms.Label();
this.txtTUE = new System.Windows.Forms.Label();
this.panelFriday = new System.Windows.Forms.Panel();
this.lblFRI = new System.Windows.Forms.Label();
this.txtFriday = new System.Windows.Forms.Label();
this.panelSat = new System.Windows.Forms.Panel();
this.panelFri = new System.Windows.Forms.Panel();
this.panelThu = new System.Windows.Forms.Panel();
this.panelWed = new System.Windows.Forms.Panel();
this.panelTue = new System.Windows.Forms.Panel();
this.panelMon = new System.Windows.Forms.Panel();
this.panelWednesday = new System.Windows.Forms.Panel();
this.lblWED = new System.Windows.Forms.Label();
this.txtWED = new System.Windows.Forms.Label();
this.panelThursday = new System.Windows.Forms.Panel();
this.lblThu = new System.Windows.Forms.Label();
this.txtThur = new System.Windows.Forms.Label();
this.panelSaturday = new System.Windows.Forms.Panel();
this.lblSAT = new System.Windows.Forms.Label();
this.txtSAT = new System.Windows.Forms.Label();
this.panelSunday = new System.Windows.Forms.Panel();
this.lblSUN = new System.Windows.Forms.Label();
this.txtSunday = new System.Windows.Forms.Label();
this.btnNextWeek = new DevExpress.XtraEditors.SimpleButton();
this.btnPastWeek = new DevExpress.XtraEditors.SimpleButton();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.dtClassDate = new System.Windows.Forms.MonthCalendar();
((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
this.groupControl1.SuspendLayout();
this.panelMonday.SuspendLayout();
this.panel4.SuspendLayout();
this.panelFriday.SuspendLayout();
this.panelWednesday.SuspendLayout();
this.panelThursday.SuspendLayout();
this.panelSaturday.SuspendLayout();
this.panelSunday.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(16, 93);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(56, 40);
this.label1.TabIndex = 52;
this.label1.Text = "Branch";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// cmbBranch
//
this.cmbBranch.Location = new System.Drawing.Point(80, 104);
this.cmbBranch.Name = "cmbBranch";
this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.cmbBranch.Size = new System.Drawing.Size(176, 20);
this.cmbBranch.TabIndex = 51;
this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged);
//
// groupControl1
//
this.groupControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
this.groupControl1.Appearance.Options.UseBackColor = true;
this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
this.groupControl1.Controls.Add(this.panelSun);
this.groupControl1.Controls.Add(this.panelMonday);
this.groupControl1.Controls.Add(this.panel4);
this.groupControl1.Controls.Add(this.panelFriday);
this.groupControl1.Controls.Add(this.panelSat);
this.groupControl1.Controls.Add(this.panelFri);
this.groupControl1.Controls.Add(this.panelThu);
this.groupControl1.Controls.Add(this.panelWed);
this.groupControl1.Controls.Add(this.panelTue);
this.groupControl1.Controls.Add(this.panelMon);
this.groupControl1.Controls.Add(this.panelWednesday);
this.groupControl1.Controls.Add(this.panelThursday);
this.groupControl1.Controls.Add(this.panelSaturday);
this.groupControl1.Controls.Add(this.panelSunday);
this.groupControl1.Location = new System.Drawing.Point(0, 120);
this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
this.groupControl1.Name = "groupControl1";
this.groupControl1.ShowCaption = false;
this.groupControl1.Size = new System.Drawing.Size(912, 568);
this.groupControl1.TabIndex = 32;
//
//.........这里部分代码省略.........
示例13: InitializeComponent
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.gridControl1 = new DevExpress.XtraGrid.GridControl();
this.gridView1 = 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.repositoryItemRadioGroup1 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
this.panelControl1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
this.SuspendLayout();
//
// simpleButton1
//
this.simpleButton1.Location = new System.Drawing.Point(277, 309);
this.simpleButton1.Name = "simpleButton1";
this.simpleButton1.Size = new System.Drawing.Size(66, 23);
this.simpleButton1.TabIndex = 1;
this.simpleButton1.Text = "确定";
this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
//
// simpleButton2
//
this.simpleButton2.Location = new System.Drawing.Point(358, 309);
this.simpleButton2.Name = "simpleButton2";
this.simpleButton2.Size = new System.Drawing.Size(66, 23);
this.simpleButton2.TabIndex = 1;
this.simpleButton2.Text = "取消";
this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
//
// checkEdit1
//
this.checkEdit1.Location = new System.Drawing.Point(12, 309);
this.checkEdit1.Name = "checkEdit1";
this.checkEdit1.Properties.Caption = "全选";
this.checkEdit1.Size = new System.Drawing.Size(75, 19);
this.checkEdit1.TabIndex = 2;
this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
//
// panelControl1
//
this.panelControl1.Controls.Add(this.comboBox1);
this.panelControl1.Controls.Add(this.checkEdit1);
this.panelControl1.Controls.Add(this.simpleButton2);
this.panelControl1.Controls.Add(this.simpleButton1);
this.panelControl1.Controls.Add(this.gridControl1);
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(462, 344);
this.panelControl1.TabIndex = 0;
this.panelControl1.Text = "panelControl1";
//
// comboBox1
//
this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Location = new System.Drawing.Point(46, 12);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(404, 20);
this.comboBox1.Sorted = true;
this.comboBox1.TabIndex = 5;
this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
//
// gridControl1
//
this.gridControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.gridControl1.EmbeddedNavigator.Name = "";
this.gridControl1.Location = new System.Drawing.Point(3, 3);
this.gridControl1.MainView = this.gridView1;
this.gridControl1.Name = "gridControl1";
this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
this.repositoryItemCheckEdit1,
this.repositoryItemRadioGroup1});
this.gridControl1.Size = new System.Drawing.Size(456, 293);
this.gridControl1.TabIndex = 0;
this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.gridView1});
//
// gridView1
//
this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
//.........这里部分代码省略.........
示例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.panelControl2 = new DevExpress.XtraEditors.PanelControl();
this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
this.groupControlList = new DevExpress.XtraEditors.GroupControl();
this.gridControlItem = new DevExpress.XtraGrid.GridControl();
this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
this.item_id = new DevExpress.XtraGrid.Columns.GridColumn();
this.grid_name = new DevExpress.XtraGrid.Columns.GridColumn();
this.grid_price_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
this.grid_price_daily = new DevExpress.XtraGrid.Columns.GridColumn();
this.grid_vat_text = new DevExpress.XtraGrid.Columns.GridColumn();
this.item_type = new DevExpress.XtraGrid.Columns.GridColumn();
this.grid_type_text = new DevExpress.XtraGrid.Columns.GridColumn();
this.grid_vat = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
this.groupControlAddittional = new DevExpress.XtraEditors.GroupControl();
this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
this.panelEnable = new DevExpress.XtraEditors.PanelControl();
this.labelControlRequired = new DevExpress.XtraEditors.LabelControl();
this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
this.lookUpEditPayType = new DevExpress.XtraEditors.LookUpEdit();
this.lookUpEditVatType = new DevExpress.XtraEditors.LookUpEdit();
this.labelBasicinfoType = new DevExpress.XtraEditors.LabelControl();
this.labelBasicinfoName = new DevExpress.XtraEditors.LabelControl();
this.labelBasicinfoPriceMonthly = new DevExpress.XtraEditors.LabelControl();
this.labelBasicinfoPriceDaily = new DevExpress.XtraEditors.LabelControl();
this.labelBasicinfoDetail = new DevExpress.XtraEditors.LabelControl();
this.labelControlBaht2 = new DevExpress.XtraEditors.LabelControl();
this.labelControlBaht = new DevExpress.XtraEditors.LabelControl();
this.labelBasicinfoVat = new DevExpress.XtraEditors.LabelControl();
this.textEditItemPriceMonthly = new DevExpress.XtraEditors.TextEdit();
this.memoEditItemDetail = new DevExpress.XtraEditors.MemoEdit();
this.textEditItemName = new DevExpress.XtraEditors.TextEdit();
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.texthiddenAction = new DevExpress.XtraEditors.TextEdit();
this.bttDelete = new DevExpress.XtraEditors.SimpleButton();
this.labelBasicinfoID = new DevExpress.XtraEditors.LabelControl();
this.textEditItemID = new DevExpress.XtraEditors.TextEdit();
this.textEditCheckEvent = new DevExpress.XtraEditors.TextEdit();
this.bttAdd = new DevExpress.XtraEditors.SimpleButton();
this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
this.bttSave = new DevExpress.XtraEditors.SimpleButton();
this.textEditItemPriceDaily = new DevExpress.XtraEditors.TextEdit();
((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
this.splitContainerControl2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.groupControlList)).BeginInit();
this.groupControlList.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
this.panelControl3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.groupControlAddittional)).BeginInit();
this.groupControlAddittional.SuspendLayout();
this.xtraScrollableControl1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.panelEnable)).BeginInit();
this.panelEnable.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.lookUpEditPayType.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.lookUpEditVatType.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceMonthly.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.memoEditItemDetail.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditItemName.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
this.panelControl1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.texthiddenAction.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditItemID.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditCheckEvent.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.textEditItemPriceDaily.Properties)).BeginInit();
this.SuspendLayout();
//
// panelControl2
//
this.panelControl2.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
this.panelControl2.Appearance.Options.UseBackColor = true;
this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelControl2.Location = new System.Drawing.Point(7, 7);
this.panelControl2.Name = "panelControl2";
this.panelControl2.Size = new System.Drawing.Size(1079, 614);
this.panelControl2.TabIndex = 20;
//
// splitContainerControl2
//
this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainerControl2.Location = new System.Drawing.Point(7, 7);
this.splitContainerControl2.Name = "splitContainerControl2";
this.splitContainerControl2.Panel1.Controls.Add(this.groupControlList);
this.splitContainerControl2.Panel1.Text = "Panel1";
//.........这里部分代码省略.........
示例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.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.checkEditForgetCard = new DevExpress.XtraEditors.CheckEdit();
this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
this.lkpEdtMemberPackage = new DevExpress.XtraEditors.LookUpEdit();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.ucMemberID1 = new ACMS.ucMemberID();
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
this.panelControl1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.checkEditForgetCard.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.lkpEdtMemberPackage.Properties)).BeginInit();
this.SuspendLayout();
//
// panelControl1
//
this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
this.panelControl1.Controls.Add(this.ucMemberID1);
this.panelControl1.Controls.Add(this.checkEditForgetCard);
this.panelControl1.Controls.Add(this.simpleButtonCancel);
this.panelControl1.Controls.Add(this.simpleButtonOK);
this.panelControl1.Controls.Add(this.lkpEdtMemberPackage);
this.panelControl1.Controls.Add(this.label2);
this.panelControl1.Controls.Add(this.label1);
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(360, 148);
this.panelControl1.TabIndex = 0;
//
// checkEditForgetCard
//
this.checkEditForgetCard.Location = new System.Drawing.Point(134, 74);
this.checkEditForgetCard.Name = "checkEditForgetCard";
this.checkEditForgetCard.Properties.Caption = "Forget Card?";
this.checkEditForgetCard.Size = new System.Drawing.Size(124, 19);
this.checkEditForgetCard.TabIndex = 43;
//
// simpleButtonCancel
//
this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.simpleButtonCancel.Location = new System.Drawing.Point(192, 116);
this.simpleButtonCancel.Name = "simpleButtonCancel";
this.simpleButtonCancel.Size = new System.Drawing.Size(75, 23);
this.simpleButtonCancel.TabIndex = 42;
this.simpleButtonCancel.Text = "Cancel";
//
// simpleButtonOK
//
this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.simpleButtonOK.Location = new System.Drawing.Point(88, 116);
this.simpleButtonOK.Name = "simpleButtonOK";
this.simpleButtonOK.Size = new System.Drawing.Size(75, 23);
this.simpleButtonOK.TabIndex = 41;
this.simpleButtonOK.Text = "OK";
this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
//
// lkpEdtMemberPackage
//
this.lkpEdtMemberPackage.Location = new System.Drawing.Point(136, 42);
this.lkpEdtMemberPackage.Name = "lkpEdtMemberPackage";
this.lkpEdtMemberPackage.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.lkpEdtMemberPackage.Size = new System.Drawing.Size(204, 20);
this.lkpEdtMemberPackage.TabIndex = 3;
this.lkpEdtMemberPackage.EditValueChanged += new System.EventHandler(this.lkpEdtMemberPackage_EditValueChanged);
//
// label2
//
this.label2.Location = new System.Drawing.Point(16, 42);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(100, 23);
this.label2.TabIndex = 1;
this.label2.Text = "Member Package";
//
// label1
//
this.label1.Location = new System.Drawing.Point(16, 8);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(100, 23);
this.label1.TabIndex = 0;
this.label1.Text = "Member ID";
//
// ucMemberID1
//
this.ucMemberID1.EditValue = "";
this.ucMemberID1.EditValueChanged = null;
this.ucMemberID1.Location = new System.Drawing.Point(134, 10);
this.ucMemberID1.Name = "ucMemberID1";
this.ucMemberID1.Size = new System.Drawing.Size(182, 20);
this.ucMemberID1.StrBranchCode = null;
this.ucMemberID1.TabIndex = 44;
this.ucMemberID1.Load += new System.EventHandler(this.ucMemberID1_Load);
//
//.........这里部分代码省略.........