本文整理汇总了C#中System.Windows.Forms.ErrorProvider类的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.ErrorProvider类的具体用法?C# System.Windows.Forms.ErrorProvider怎么用?C# System.Windows.Forms.ErrorProvider使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
System.Windows.Forms.ErrorProvider类属于命名空间,在下文中一共展示了System.Windows.Forms.ErrorProvider类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewMediumLevelRecordEditor));
this.bSave = new System.Windows.Forms.Button();
this.bCancel = new System.Windows.Forms.Button();
this.Error = new System.Windows.Forms.ErrorProvider(this.components);
this.fpanel1 = new System.Windows.Forms.TableLayoutPanel();
((System.ComponentModel.ISupportInitialize)(this.Error)).BeginInit();
this.SuspendLayout();
//
// bSave
//
resources.ApplyResources(this.bSave, "bSave");
this.bSave.DialogResult = System.Windows.Forms.DialogResult.OK;
this.bSave.Name = "bSave";
this.bSave.UseVisualStyleBackColor = true;
this.bSave.Click += new System.EventHandler(this.bSave_Click);
//
// bCancel
//
resources.ApplyResources(this.bCancel, "bCancel");
this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.bCancel.Name = "bCancel";
this.bCancel.UseVisualStyleBackColor = true;
this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
//
// Error
//
this.Error.ContainerControl = this;
resources.ApplyResources(this.Error, "Error");
//
// fpanel1
//
resources.ApplyResources(this.fpanel1, "fpanel1");
this.fpanel1.Name = "fpanel1";
this.fpanel1.Resize += new System.EventHandler(this.fpanel1_Resize);
//
// NewMediumLevelRecordEditor
//
this.AcceptButton = this.bSave;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.bCancel;
this.Controls.Add(this.fpanel1);
this.Controls.Add(this.bCancel);
this.Controls.Add(this.bSave);
this.Name = "NewMediumLevelRecordEditor";
this.ShowInTaskbar = false;
this.Load += new System.EventHandler(this.NewMediumLevelRecordEditor_Load);
this.Shown += new System.EventHandler(this.NewMediumLevelRecordEditor_Shown);
((System.ComponentModel.ISupportInitialize)(this.Error)).EndInit();
this.ResumeLayout(false);
}
开发者ID:figment,项目名称:tesvsnip,代码行数:58,代码来源:NewMediumLevelRecordEditor.designer.cs
示例2: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this._table = new System.Windows.Forms.TableLayoutPanel();
this._label = new System.Windows.Forms.Label();
this._errorProvider = new System.Windows.Forms.ErrorProvider();
this._table.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this._errorProvider)).BeginInit();
this.SuspendLayout();
//
// _table
//
this._table.ColumnCount = 3;
this._table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this._table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this._table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 16F));
this._table.Controls.Add(this._label, 0, 0);
this._table.Dock = System.Windows.Forms.DockStyle.Fill;
this._table.Location = new System.Drawing.Point(0, 0);
this._table.Name = "_table";
this._table.RowCount = 1;
this._table.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this._table.Size = new System.Drawing.Size(219, 28);
this._table.TabIndex = 0;
//
// _label
//
this._label.Anchor = System.Windows.Forms.AnchorStyles.Left;
this._label.AutoEllipsis = true;
this._label.AutoSize = true;
this._label.Location = new System.Drawing.Point(3, 7);
this._label.Margin = new System.Windows.Forms.Padding(3);
this._label.Name = "_label";
this._label.Size = new System.Drawing.Size(36, 13);
this._label.TabIndex = 6;
this._label.Text = "<text>";
this._label.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// _errorProvider
//
this._errorProvider.ContainerControl = this;
//
// TableItem
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this._table);
this.Name = "TableItem";
this.Size = new System.Drawing.Size(219, 28);
this._table.ResumeLayout(false);
this._table.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this._errorProvider)).EndInit();
this.ResumeLayout(false);
}
开发者ID:mgrman,项目名称:DGCLib,代码行数:57,代码来源:TableItem.designer.cs
示例3: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnCat = new System.Windows.Forms.Button();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.rbActionDelCol = new System.Windows.Forms.RadioButton();
this.rbActionDelRow = new System.Windows.Forms.RadioButton();
this.label4 = new System.Windows.Forms.Label();
this.btnAction = new System.Windows.Forms.Button();
this.txtReplaceWith = new System.Windows.Forms.TextBox();
this.rbActionReplace = new System.Windows.Forms.RadioButton();
this.cboCols = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.btnScan = new System.Windows.Forms.Button();
this.txtFindVal = new System.Windows.Forms.TextBox();
this.lblStatus = new System.Windows.Forms.Label();
this.btnCancel = new System.Windows.Forms.Button();
this.btnReturn = new System.Windows.Forms.Button();
this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
this.helpProvider1 = new System.Windows.Forms.HelpProvider();
this.groupBox1.SuspendLayout();
this.groupBox4.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btnCat);
this.groupBox1.Controls.Add(this.groupBox4);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.btnScan);
this.groupBox1.Controls.Add(this.txtFindVal);
this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(238, 378);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Data Validation ";
//
// btnCat
//
this.btnCat.Location = new System.Drawing.Point(43, 339);
this.btnCat.Name = "btnCat";
this.btnCat.Size = new System.Drawing.Size(152, 23);
this.btnCat.TabIndex = 26;
this.btnCat.Text = "Identify Categorical Variables ";
this.btnCat.UseVisualStyleBackColor = true;
this.btnCat.Click += new System.EventHandler(this.btnCat_Click);
//
// groupBox4
//
this.groupBox4.Controls.Add(this.rbActionDelCol);
this.groupBox4.Controls.Add(this.rbActionDelRow);
this.groupBox4.Controls.Add(this.label4);
this.groupBox4.Controls.Add(this.btnAction);
this.groupBox4.Controls.Add(this.txtReplaceWith);
this.groupBox4.Controls.Add(this.rbActionReplace);
this.groupBox4.Controls.Add(this.cboCols);
this.groupBox4.Enabled = false;
this.groupBox4.Location = new System.Drawing.Point(9, 119);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(223, 191);
this.groupBox4.TabIndex = 25;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "Action:";
//
// rbActionDelCol
//
this.rbActionDelCol.AutoSize = true;
this.rbActionDelCol.Location = new System.Drawing.Point(13, 69);
this.rbActionDelCol.Name = "rbActionDelCol";
this.rbActionDelCol.Size = new System.Drawing.Size(94, 17);
this.rbActionDelCol.TabIndex = 26;
this.rbActionDelCol.Text = "Delete Column";
this.rbActionDelCol.UseVisualStyleBackColor = true;
this.rbActionDelCol.CheckedChanged += new System.EventHandler(this.rbActionDelCol_CheckedChanged);
//
// rbActionDelRow
//
this.rbActionDelRow.AutoSize = true;
this.rbActionDelRow.Location = new System.Drawing.Point(13, 46);
this.rbActionDelRow.Name = "rbActionDelRow";
this.rbActionDelRow.Size = new System.Drawing.Size(81, 17);
this.rbActionDelRow.TabIndex = 25;
this.rbActionDelRow.Text = "Delete Row";
this.rbActionDelRow.UseVisualStyleBackColor = true;
this.rbActionDelRow.CheckedChanged += new System.EventHandler(this.rbActionDelRow_CheckedChanged);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(45, 102);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(101, 13);
//.........这里部分代码省略.........
开发者ID:wrbrooks,项目名称:VB3,代码行数:101,代码来源:frmMissingValues.designer.cs
示例4: InitializeComponent
/// <summary>
/// Initializes the component.
/// </summary>
public void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.uxProductId = new System.Windows.Forms.ComboBox();
uxProductIdLabel = new System.Windows.Forms.Label();
this.uxVendorId = new System.Windows.Forms.ComboBox();
uxVendorIdLabel = new System.Windows.Forms.Label();
this.uxAverageLeadTime = new System.Windows.Forms.TextBox();
uxAverageLeadTimeLabel = new System.Windows.Forms.Label();
this.uxStandardPrice = new System.Windows.Forms.TextBox();
uxStandardPriceLabel = new System.Windows.Forms.Label();
this.uxLastReceiptCost = new System.Windows.Forms.TextBox();
uxLastReceiptCostLabel = new System.Windows.Forms.Label();
this.uxLastReceiptDate = new System.Windows.Forms.DateTimePicker();
uxLastReceiptDateLabel = new System.Windows.Forms.Label();
this.uxMinOrderQty = new System.Windows.Forms.TextBox();
uxMinOrderQtyLabel = new System.Windows.Forms.Label();
this.uxMaxOrderQty = new System.Windows.Forms.TextBox();
uxMaxOrderQtyLabel = new System.Windows.Forms.Label();
this.uxOnOrderQty = new System.Windows.Forms.TextBox();
uxOnOrderQtyLabel = new System.Windows.Forms.Label();
this.uxUnitMeasureCode = new System.Windows.Forms.ComboBox();
uxUnitMeasureCodeLabel = new System.Windows.Forms.Label();
this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
uxModifiedDateLabel = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
this.SuspendLayout();
//
// uxTableLayoutPanel
//
//this.uxTableLayoutPanel.AutoSize = true;
//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
//this.uxTableLayoutPanel.ColumnCount = 2;
//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
//this.uxTableLayoutPanel.RowCount = 2;
//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
//this.uxTableLayoutPanel.TabIndex = 0;
//
// uxErrorProvider
//
this.uxErrorProvider.ContainerControl = this;
this.uxErrorProvider.DataSource = this.uxBindingSource;
//
// uxProductIdLabel
//
this.uxProductIdLabel.Name = "uxProductIdLabel";
this.uxProductIdLabel.Text = "Product Id:";
this.uxProductIdLabel.Location = new System.Drawing.Point(3, 0);
this.Controls.Add(this.uxProductIdLabel);
//this.uxTableLayoutPanel.Controls.Add(this.uxProductIdLabel);
//
// uxProductId
//
this.uxProductId.Name = "uxProductId";
//this.uxTableLayoutPanel.Controls.Add(this.uxProductId);
this.uxProductId.Location = new System.Drawing.Point(160, 0);
this.Controls.Add(this.uxProductId);
//
// uxVendorIdLabel
//
this.uxVendorIdLabel.Name = "uxVendorIdLabel";
this.uxVendorIdLabel.Text = "Vendor Id:";
this.uxVendorIdLabel.Location = new System.Drawing.Point(3, 26);
this.Controls.Add(this.uxVendorIdLabel);
//this.uxTableLayoutPanel.Controls.Add(this.uxVendorIdLabel);
//
// uxVendorId
//
this.uxVendorId.Name = "uxVendorId";
//this.uxTableLayoutPanel.Controls.Add(this.uxVendorId);
this.uxVendorId.Location = new System.Drawing.Point(160, 26);
this.Controls.Add(this.uxVendorId);
//
// uxAverageLeadTimeLabel
//
this.uxAverageLeadTimeLabel.Name = "uxAverageLeadTimeLabel";
this.uxAverageLeadTimeLabel.Text = "Average Lead Time:";
this.uxAverageLeadTimeLabel.Location = new System.Drawing.Point(3, 52);
this.Controls.Add(this.uxAverageLeadTimeLabel);
//this.uxTableLayoutPanel.Controls.Add(this.uxAverageLeadTimeLabel);
//
// uxAverageLeadTime
//
//.........这里部分代码省略.........
开发者ID:WildGenie,项目名称:NetTiers,代码行数:101,代码来源:ProductVendorEditControlBase.cs
示例5: InitializeComponent
/// <summary>
/// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
///
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.contextMenuBusy = new System.Windows.Forms.ContextMenuStrip(this.components);
this.menuBusy = new System.Windows.Forms.ToolStripMenuItem();
this.menuBusyDesc = new System.Windows.Forms.ToolStripMenuItem();
this.menuFree = new System.Windows.Forms.ToolStripMenuItem();
this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
this.contextMenuStripDelete = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.errGradeYear = new System.Windows.Forms.ErrorProvider(this.components);
this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colSubject = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colLevel = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
this.lblName = new DevComponents.DotNetBar.LabelX();
this.txtNote = new DevComponents.DotNetBar.Controls.TextBoxX();
this.labelX6 = new DevComponents.DotNetBar.LabelX();
this.txtClassCode = new DevComponents.DotNetBar.Controls.TextBoxX();
this.labelX5 = new DevComponents.DotNetBar.LabelX();
this.txtGradeYear = new DevComponents.DotNetBar.Controls.TextBoxX();
this.lblClassroomDesc = new DevComponents.DotNetBar.LabelX();
this.contextMenuBusy.SuspendLayout();
this.contextMenuStripDelete.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.errGradeYear)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();
this.panelEx1.SuspendLayout();
this.SuspendLayout();
//
// contextMenuBusy
//
this.contextMenuBusy.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuBusy,
this.menuBusyDesc,
this.menuFree});
this.contextMenuBusy.Name = "contextMenuStrip1";
this.contextMenuBusy.ShowImageMargin = false;
this.contextMenuBusy.Size = new System.Drawing.Size(186, 70);
//
// menuBusy
//
this.menuBusy.Name = "menuBusy";
this.menuBusy.Size = new System.Drawing.Size(185, 22);
this.menuBusy.Text = "設定不排課時段";
//
// menuBusyDesc
//
this.menuBusyDesc.Name = "menuBusyDesc";
this.menuBusyDesc.Size = new System.Drawing.Size(185, 22);
this.menuBusyDesc.Text = "設定不排課時段(指定描述)";
//
// menuFree
//
this.menuFree.Name = "menuFree";
this.menuFree.Size = new System.Drawing.Size(185, 22);
this.menuFree.Text = "取消設定";
//
// tabItem2
//
this.tabItem2.Name = "tabItem2";
this.tabItem2.Text = "tabItem2";
//
// tabItem1
//
this.tabItem1.Name = "tabItem1";
this.tabItem1.Text = "tabItem1";
//
// contextMenuStripDelete
//
this.contextMenuStripDelete.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem2});
this.contextMenuStripDelete.Name = "contextMenuStrip1";
this.contextMenuStripDelete.ShowImageMargin = false;
this.contextMenuStripDelete.Size = new System.Drawing.Size(70, 26);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(69, 22);
this.toolStripMenuItem2.Text = "刪除";
this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItemDelete_Click);
//
// errGradeYear
//
this.errGradeYear.ContainerControl = this;
//
// errorProvider2
//.........这里部分代码省略.........
开发者ID:KunHsiang,项目名称:ischedulePlus,代码行数:101,代码来源:ClassEditor.designer.cs
示例6: InitializeComponent
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EEPROMMarlin));
this.label1 = new System.Windows.Forms.Label();
this.xstepsbox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.ystepsbox = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.zstepsbox = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.estepsbox = new System.Windows.Forms.TextBox();
this.buttonLoad = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonRestore = new System.Windows.Forms.Button();
this.buttonAbort = new System.Windows.Forms.Button();
this.label6 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.xfeedbox = new System.Windows.Forms.TextBox();
this.yfeedbox = new System.Windows.Forms.TextBox();
this.zfeedbox = new System.Windows.Forms.TextBox();
this.efeedbox = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.maccxbox = new System.Windows.Forms.TextBox();
this.maccybox = new System.Windows.Forms.TextBox();
this.macczbox = new System.Windows.Forms.TextBox();
this.maccebox = new System.Windows.Forms.TextBox();
this.panel2 = new System.Windows.Forms.Panel();
this.mzjerkbox = new System.Windows.Forms.TextBox();
this.label23 = new System.Windows.Forms.Label();
this.maxxyjerkbox = new System.Windows.Forms.TextBox();
this.label22 = new System.Windows.Forms.Label();
this.minsegtbox = new System.Windows.Forms.TextBox();
this.label21 = new System.Windows.Forms.Label();
this.mintfeedbox = new System.Windows.Forms.TextBox();
this.label20 = new System.Windows.Forms.Label();
this.minfeedbox = new System.Windows.Forms.TextBox();
this.label19 = new System.Windows.Forms.Label();
this.label18 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.label25 = new System.Windows.Forms.Label();
this.label26 = new System.Windows.Forms.Label();
this.label27 = new System.Windows.Forms.Label();
this.ppidbox = new System.Windows.Forms.TextBox();
this.ipidbox = new System.Windows.Forms.TextBox();
this.dpidbox = new System.Windows.Forms.TextBox();
this.accbox = new System.Windows.Forms.TextBox();
this.lable17 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.raccbox = new System.Windows.Forms.TextBox();
this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(74, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Steps per mm:";
//
// xstepsbox
//
this.xstepsbox.Location = new System.Drawing.Point(207, 6);
this.xstepsbox.Name = "xstepsbox";
this.xstepsbox.Size = new System.Drawing.Size(63, 20);
this.xstepsbox.TabIndex = 1;
this.xstepsbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(184, 9);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(17, 13);
this.label2.TabIndex = 2;
this.label2.Text = "X:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(276, 9);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(17, 13);
this.label3.TabIndex = 3;
//.........这里部分代码省略.........
开发者ID:rkoeppl,项目名称:Repetier-Host,代码行数:101,代码来源:EEPROMMarlin.designer.cs
示例7: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.Label label14;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmClientes));
this.grpCampos = new System.Windows.Forms.GroupBox();
this.label6 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.txtContactoCLI = new System.Windows.Forms.TextBox();
this.txtNombreCLI = new System.Windows.Forms.TextBox();
this.txtApellidoCLI = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.txtTransporteCLI = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtCorreoCLI = new System.Windows.Forms.TextBox();
this.txtMovilCLI = new System.Windows.Forms.TextBox();
this.txtTelefonoCLI = new System.Windows.Forms.TextBox();
this.txtIdClienteCLI = new System.Windows.Forms.TextBox();
this.txtFechaNacCLI = new System.Windows.Forms.MaskedTextBox();
this.label11 = new System.Windows.Forms.Label();
this.txtRazonSocialCLI = new System.Windows.Forms.TextBox();
this.cmbCondicion = new System.Windows.Forms.ComboBox();
this.label13 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.txtCUIT = new System.Windows.Forms.TextBox();
this.gvwDatos = new System.Windows.Forms.DataGridView();
this.grpBotones = new System.Windows.Forms.GroupBox();
this.btnCancelar = new System.Windows.Forms.Button();
this.btnSalir = new System.Windows.Forms.Button();
this.btnGrabar = new System.Windows.Forms.Button();
this.btnBorrar = new System.Windows.Forms.Button();
this.btnEditar = new System.Windows.Forms.Button();
this.btnNuevo = new System.Windows.Forms.Button();
this.btnBuscar = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtParametros = new System.Windows.Forms.TextBox();
this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
this.label9 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.txtProvinciaCLI = new System.Windows.Forms.TextBox();
this.txtLocalidadCLI = new System.Windows.Forms.TextBox();
this.txtDireccionCLI = new System.Windows.Forms.TextBox();
label14 = new System.Windows.Forms.Label();
this.grpCampos.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.gvwDatos)).BeginInit();
this.grpBotones.SuspendLayout();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
this.bindingNavigator1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
this.SuspendLayout();
//
// label14
//
label14.AutoSize = true;
label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
label14.ForeColor = System.Drawing.SystemColors.ActiveCaption;
label14.Location = new System.Drawing.Point(10, 70);
label14.Name = "label14";
label14.Size = new System.Drawing.Size(51, 15);
label14.TabIndex = 27;
label14.Text = "Apellido";
//
// grpCampos
//
this.grpCampos.Controls.Add(this.label9);
this.grpCampos.Controls.Add(this.label8);
this.grpCampos.Controls.Add(this.label5);
this.grpCampos.Controls.Add(this.txtProvinciaCLI);
this.grpCampos.Controls.Add(this.txtLocalidadCLI);
this.grpCampos.Controls.Add(this.txtDireccionCLI);
this.grpCampos.Controls.Add(label14);
this.grpCampos.Controls.Add(this.label6);
this.grpCampos.Controls.Add(this.label12);
this.grpCampos.Controls.Add(this.label10);
this.grpCampos.Controls.Add(this.label3);
this.grpCampos.Controls.Add(this.label1);
this.grpCampos.Controls.Add(this.txtContactoCLI);
this.grpCampos.Controls.Add(this.txtNombreCLI);
this.grpCampos.Controls.Add(this.txtApellidoCLI);
//.........这里部分代码省略.........
开发者ID:BenjaOtero,项目名称:trend-pos,代码行数:101,代码来源:frmClientes.designer.cs
示例8: InitializeComponent
/// <summary>
/// Método necesario para admitir el Diseñador. No se puede modificar
/// el contenido del método con el editor de código.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tipo_Membresia));
this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
this.labelX2 = new DevComponents.DotNetBar.LabelX();
this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
this.labelX1 = new DevComponents.DotNetBar.LabelX();
this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
this.labelX3 = new DevComponents.DotNetBar.LabelX();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
this.SuspendLayout();
//
// dataGridViewX1
//
this.dataGridViewX1.AllowUserToAddRows = false;
this.dataGridViewX1.AllowUserToDeleteRows = false;
this.dataGridViewX1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dataGridViewX1.BackgroundColor = System.Drawing.Color.White;
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dataGridViewX1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle2.BackColor = System.Drawing.Color.White;
dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle2;
this.dataGridViewX1.EnableHeadersVisualStyles = false;
this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.dataGridViewX1.Location = new System.Drawing.Point(31, 203);
this.dataGridViewX1.MultiSelect = false;
this.dataGridViewX1.Name = "dataGridViewX1";
this.dataGridViewX1.ReadOnly = true;
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Black;
dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dataGridViewX1.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
this.dataGridViewX1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridViewX1.Size = new System.Drawing.Size(431, 150);
this.dataGridViewX1.TabIndex = 14;
//
// labelX2
//
//
//
//
this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.labelX2.Location = new System.Drawing.Point(37, 95);
this.labelX2.Name = "labelX2";
this.labelX2.Size = new System.Drawing.Size(75, 23);
this.labelX2.TabIndex = 13;
this.labelX2.Text = "Descripcion :";
//
// textBoxX2
//
this.textBoxX2.BackColor = System.Drawing.Color.White;
//
//
//
this.textBoxX2.Border.Class = "TextBoxBorder";
this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.textBoxX2.ForeColor = System.Drawing.Color.Black;
this.textBoxX2.Location = new System.Drawing.Point(118, 94);
this.textBoxX2.MaxLength = 3000;
this.textBoxX2.Multiline = true;
this.textBoxX2.Name = "textBoxX2";
this.textBoxX2.ReadOnly = true;
this.textBoxX2.Size = new System.Drawing.Size(271, 91);
this.textBoxX2.TabIndex = 12;
//
// textBoxX1
//
this.textBoxX1.BackColor = System.Drawing.Color.White;
//
//
//.........这里部分代码省略.........
开发者ID:eduardo-salazar,项目名称:sag,代码行数:101,代码来源:Tipo_Membresia.designer.cs
示例9: InitializeComponent
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(nodarbibu_ievade));
this.l_idmacsp = new System.Windows.Forms.Label();
this.cb_idmacsp = new System.Windows.Forms.ComboBox();
this.cb_nod_veids = new System.Windows.Forms.ComboBox();
this.l_nod_veids = new System.Windows.Forms.Label();
this.dtp_dat_no = new System.Windows.Forms.DateTimePicker();
this.l_dat_no = new System.Windows.Forms.Label();
this.dtp_dat_lidz = new System.Windows.Forms.DateTimePicker();
this.l_dat_lidz = new System.Windows.Forms.Label();
this.cb_ned_diena = new System.Windows.Forms.ComboBox();
this.l_ned_diena = new System.Windows.Forms.Label();
this.cb_laiks = new System.Windows.Forms.ComboBox();
this.l_laiks = new System.Windows.Forms.Label();
this.b_pievienot = new System.Windows.Forms.Button();
this.l_idkkods = new System.Windows.Forms.Label();
this.cb_idkkods = new System.Windows.Forms.ComboBox();
this.ep_kluda = new System.Windows.Forms.ErrorProvider(this.components);
((System.ComponentModel.ISupportInitialize)(this.ep_kluda)).BeginInit();
this.SuspendLayout();
//
// l_idmacsp
//
this.l_idmacsp.Location = new System.Drawing.Point(12, 37);
this.l_idmacsp.Name = "l_idmacsp";
this.l_idmacsp.Size = new System.Drawing.Size(104, 23);
this.l_idmacsp.TabIndex = 2;
this.l_idmacsp.Text = "Mācībspēks:";
this.l_idmacsp.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// cb_idmacsp
//
this.cb_idmacsp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_idmacsp.FormattingEnabled = true;
this.cb_idmacsp.Location = new System.Drawing.Point(122, 39);
this.cb_idmacsp.Name = "cb_idmacsp";
this.cb_idmacsp.Size = new System.Drawing.Size(250, 21);
this.cb_idmacsp.TabIndex = 3;
//
// cb_nod_veids
//
this.cb_nod_veids.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_nod_veids.FormattingEnabled = true;
this.cb_nod_veids.Location = new System.Drawing.Point(122, 66);
this.cb_nod_veids.Name = "cb_nod_veids";
this.cb_nod_veids.Size = new System.Drawing.Size(250, 21);
this.cb_nod_veids.TabIndex = 5;
//
// l_nod_veids
//
this.l_nod_veids.Location = new System.Drawing.Point(12, 64);
this.l_nod_veids.Name = "l_nod_veids";
this.l_nod_veids.Size = new System.Drawing.Size(104, 23);
this.l_nod_veids.TabIndex = 4;
this.l_nod_veids.Text = "Nodarbības veids:";
this.l_nod_veids.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// dtp_dat_no
//
this.dtp_dat_no.Location = new System.Drawing.Point(122, 93);
this.dtp_dat_no.MaxDate = new System.DateTime(2020, 1, 1, 0, 0, 0, 0);
this.dtp_dat_no.MinDate = new System.DateTime(2015, 1, 1, 0, 0, 0, 0);
this.dtp_dat_no.Name = "dtp_dat_no";
this.dtp_dat_no.Size = new System.Drawing.Size(250, 20);
this.dtp_dat_no.TabIndex = 7;
this.dtp_dat_no.Value = new System.DateTime(2015, 5, 1, 0, 0, 0, 0);
//
// l_dat_no
//
this.l_dat_no.Location = new System.Drawing.Point(12, 94);
this.l_dat_no.Name = "l_dat_no";
this.l_dat_no.Size = new System.Drawing.Size(104, 23);
this.l_dat_no.TabIndex = 6;
this.l_dat_no.Text = "Datums no:";
this.l_dat_no.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// dtp_dat_lidz
//
this.dtp_dat_lidz.Location = new System.Drawing.Point(122, 119);
this.dtp_dat_lidz.MaxDate = new System.DateTime(2020, 1, 1, 0, 0, 0, 0);
this.dtp_dat_lidz.MinDate = new System.DateTime(2015, 1, 1, 0, 0, 0, 0);
this.dtp_dat_lidz.Name = "dtp_dat_lidz";
this.dtp_dat_lidz.Size = new System.Drawing.Size(250, 20);
this.dtp_dat_lidz.TabIndex = 9;
this.dtp_dat_lidz.Value = new System.DateTime(2015, 5, 1, 0, 0, 0, 0);
//
// l_dat_lidz
//
this.l_dat_lidz.Location = new System.Drawing.Point(12, 120);
this.l_dat_lidz.Name = "l_dat_lidz";
this.l_dat_lidz.Size = new System.Drawing.Size(104, 23);
this.l_dat_lidz.TabIndex = 8;
this.l_dat_lidz.Text = "Datums līdz:";
this.l_dat_lidz.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// cb_ned_diena
//
this.cb_ned_diena.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
//.........这里部分代码省略.........
开发者ID:arvislacis,项目名称:naus,代码行数:101,代码来源:nodarbibu_ievade.Designer.cs
示例10: InitializeComponent
/// <summary>
/// Initializes the component.
/// </summary>
public void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.uxTransactionId = new System.Windows.Forms.TextBox();
uxTransactionIdLabel = new System.Windows.Forms.Label();
this.uxProductId = new System.Windows.Forms.TextBox();
uxProductIdLabel = new System.Windows.Forms.Label();
this.uxReferenceOrderId = new System.Windows.Forms.TextBox();
uxReferenceOrderIdLabel = new System.Windows.Forms.Label();
this.uxReferenceOrderLineId = new System.Windows.Forms.TextBox();
uxReferenceOrderLineIdLabel = new System.Windows.Forms.Label();
this.uxTransactionDate = new System.Windows.Forms.DateTimePicker();
uxTransactionDateLabel = new System.Windows.Forms.Label();
this.uxTransactionType = new System.Windows.Forms.TextBox();
uxTransactionTypeLabel = new System.Windows.Forms.Label();
this.uxQuantity = new System.Windows.Forms.TextBox();
uxQuantityLabel = new System.Windows.Forms.Label();
this.uxActualCost = new System.Windows.Forms.TextBox();
uxActualCostLabel = new System.Windows.Forms.Label();
this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
uxModifiedDateLabel = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
this.SuspendLayout();
//
// uxTableLayoutPanel
//
//this.uxTableLayoutPanel.AutoSize = true;
//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
//this.uxTableLayoutPanel.ColumnCount = 2;
//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
//this.uxTableLayoutPanel.RowCount = 2;
//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
//this.uxTableLayoutPanel.TabIndex = 0;
//
// uxErrorProvider
//
this.uxErrorProvider.ContainerControl = this;
this.uxErrorProvider.DataSource = this.uxBindingSource;
//
// uxTransactionIdLabel
//
this.uxTransactionIdLabel.Name = "uxTransactionIdLabel";
this.uxTransactionIdLabel.Text = "Transaction Id:";
this.uxTransactionIdLabel.Location = new System.Drawing.Point(3, 0);
this.Controls.Add(this.uxTransactionIdLabel);
//this.uxTableLayoutPanel.Controls.Add(this.uxTransactionIdLabel);
//
// uxTransactionId
//
this.uxTransactionId.Name = "uxTransactionId";
//this.uxTableLayoutPanel.Controls.Add(this.uxTransactionId);
this.uxTransactionId.Location = new System.Drawing.Point(160, 0);
this.Controls.Add(this.uxTransactionId);
//
// uxProductIdLabel
//
this.uxProductIdLabel.Name = "uxProductIdLabel";
this.uxProductIdLabel.Text = "Product Id:";
this.uxProductIdLabel.Location = new System.Drawing.Point(3, 26);
this.Controls.Add(this.uxProductIdLabel);
//this.uxTableLayoutPanel.Controls.Add(this.uxProductIdLabel);
//
// uxProductId
//
this.uxProductId.Name = "uxProductId";
//this.uxTableLayoutPanel.Controls.Add(this.uxProductId);
this.uxProductId.Location = new System.Drawing.Point(160, 26);
this.Controls.Add(this.uxProductId);
//
// uxReferenceOrderIdLabel
//
this.uxReferenceOrderIdLabel.Name = "uxReferenceOrderIdLabel";
this.uxReferenceOrderIdLabel.Text = "Reference Order Id:";
this.uxReferenceOrderIdLabel.Location = new System.Drawing.Point(3, 52);
this.Controls.Add(this.uxReferenceOrderIdLabel);
//this.uxTableLayoutPanel.Controls.Add(this.uxReferenceOrderIdLabel);
//
// uxReferenceOrderId
//
this.uxReferenceOrderId.Name = "uxReferenceOrderId";
//this.uxTableLayoutPanel.Controls.Add(this.uxReferenceOrderId);
this.uxReferenceOrderId.Location = new System.Drawing.Point(160, 52);
this.Controls.Add(this.uxReferenceOrderId);
//.........这里部分代码省略.........
开发者ID:netTiers,项目名称:netTiers,代码行数:101,代码来源:TransactionHistoryArchiveEditControlBase.cs
示例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.components = new System.ComponentModel.Container();
this.lblCurrentLine = new System.Windows.Forms.Label();
this.txtCurrentLine = new System.Windows.Forms.TextBox();
this.err = new System.Windows.Forms.ErrorProvider(this.components);
this.txtMaxLine = new System.Windows.Forms.TextBox();
this.lblMaxLine = new System.Windows.Forms.Label();
this.txtGotoLine = new System.Windows.Forms.TextBox();
this.lblGotoLine = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.err)).BeginInit();
this.SuspendLayout();
//
// lblCurrentLine
//
this.lblCurrentLine.AutoSize = true;
this.lblCurrentLine.Location = new System.Drawing.Point(9, 13);
this.lblCurrentLine.Name = "lblCurrentLine";
this.lblCurrentLine.Size = new System.Drawing.Size(102, 13);
this.lblCurrentLine.TabIndex = 0;
this.lblCurrentLine.Text = "&Current line number";
//
// txtCurrentLine
//
this.txtCurrentLine.Location = new System.Drawing.Point(132, 8);
this.txtCurrentLine.Name = "txtCurrentLine";
this.txtCurrentLine.ReadOnly = true;
this.txtCurrentLine.Size = new System.Drawing.Size(63, 21);
this.txtCurrentLine.TabIndex = 1;
//
// err
//
this.err.ContainerControl = this;
//
// txtMaxLine
//
this.txtMaxLine.Location = new System.Drawing.Point(132, 33);
|
请发表评论