本文整理汇总了C#中System.Windows.Forms.GroupBox.SuspendLayout方法的典型用法代码示例。如果您正苦于以下问题:C# GroupBox.SuspendLayout方法的具体用法?C# GroupBox.SuspendLayout怎么用?C# GroupBox.SuspendLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.GroupBox
的用法示例。
在下文中一共展示了GroupBox.SuspendLayout方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeComponent
/// <summary>
/// Overriden InitializeComponent to use a CheckedListBox instead of a ListBox.
/// </summary>
override protected void InitializeComponent()
{
grpText = new GroupBox();
lstText = new CheckedListBox();
txtText = new SpecialTextBox();
grpText.SuspendLayout();
SuspendLayout();
//
// grpText
//
grpText.Controls.Add(lstText);
grpText.Controls.Add(txtText);
grpText.Dock = DockStyle.Fill;
grpText.Location = new Point(0, 0);
grpText.Name = "grpText";
grpText.Size = new Size(100, 200);
grpText.TabIndex = 3;
grpText.TabStop = false;
grpText.Text = "Text";
grpText.Click += new System.EventHandler(grpText_Click);
//
// lstText
//
lstText.Anchor = (((((AnchorStyles.Top | AnchorStyles.Bottom)
| AnchorStyles.Left)
| AnchorStyles.Right)));
lstText.FormattingEnabled = true;
lstText.Location = new Point(6, 75);
lstText.Margin = new Padding(3, 6, 3, 3);
lstText.Name = "lstText";
lstText.Size = new Size(88, 109);
lstText.TabIndex = 1;
lstText.TabStop = false;
//
// txtText
//
txtText.Anchor = ((((AnchorStyles.Top | AnchorStyles.Left)
| AnchorStyles.Right)));
txtText.Location = new Point(6, 19);
txtText.Multiline = true;
txtText.Name = "txtText";
txtText.Size = new Size(88, 47);
txtText.TabIndex = 0;
//
// ColumnFirstText
//
AutoScaleDimensions = new SizeF(6F, 13F);
AutoScaleMode = AutoScaleMode.Font;
Controls.Add(grpText);
Enabled = false;
MinimumSize = new Size(100, 200);
Name = "ColumnFirstText";
Size = new Size(100, 200);
grpText.ResumeLayout(false);
grpText.PerformLayout();
ResumeLayout(false);
}
示例2: empaqueToolStripMenuItem_Click
private void empaqueToolStripMenuItem_Click(object sender, EventArgs e)
{
Panel panel_Empaques = new System.Windows.Forms.Panel();
Label lbl_Cantidad_Empaque = new System.Windows.Forms.Label();
Label lbl_Cantidad_PTerminados = new System.Windows.Forms.Label();
TextBox txt_Cantidad_Empaque = new System.Windows.Forms.TextBox();
Button bttn_Quitar_Empaque = new System.Windows.Forms.Button();
Button bttn_Agregar_Empaque = new System.Windows.Forms.Button();
TextBox txt_Cantidad_PTerminados = new System.Windows.Forms.TextBox();
Button bttn_Quitar_PTerminados = new System.Windows.Forms.Button();
Button bttn_Agregar_PTerminados = new System.Windows.Forms.Button();
GroupBox groupBoxProductoEmpaque = new System.Windows.Forms.GroupBox();
DataGridView dataGridEmpaque = new System.Windows.Forms.DataGridView();
GroupBox groupBoxProductoEmpaqueLista = new System.Windows.Forms.GroupBox();
DataGridView dataGridEmpaque_Lista = new System.Windows.Forms.DataGridView();
GroupBox groupBoxProductoTerminado = new System.Windows.Forms.GroupBox();
DataGridView dataGridPTerminados = new System.Windows.Forms.DataGridView();
GroupBox groupBoxProductoTerminadoLista = new System.Windows.Forms.GroupBox();
DataGridView dataGridPTerminados_Lista = new System.Windows.Forms.DataGridView();
panel_Empaques.SuspendLayout();
groupBoxProductoEmpaque.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(dataGridEmpaque)).BeginInit();
groupBoxProductoEmpaqueLista.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(dataGridEmpaque_Lista)).BeginInit();
groupBoxProductoTerminado.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(dataGridPTerminados)).BeginInit();
groupBoxProductoTerminadoLista.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(dataGridPTerminados_Lista)).BeginInit();
SuspendLayout();
//
// panel_Empaques
//
panel_Empaques.Controls.Add(lbl_Cantidad_Empaque);
panel_Empaques.Controls.Add(lbl_Cantidad_PTerminados);
panel_Empaques.Controls.Add(txt_Cantidad_Empaque);
panel_Empaques.Controls.Add(bttn_Quitar_Empaque);
panel_Empaques.Controls.Add(bttn_Agregar_Empaque);
panel_Empaques.Controls.Add(txt_Cantidad_PTerminados);
panel_Empaques.Controls.Add(bttn_Quitar_PTerminados);
panel_Empaques.Controls.Add(bttn_Agregar_PTerminados);
panel_Empaques.Controls.Add(groupBoxProductoEmpaque);
panel_Empaques.Controls.Add(groupBoxProductoEmpaqueLista);
panel_Empaques.Controls.Add(groupBoxProductoTerminado);
panel_Empaques.Controls.Add(groupBoxProductoTerminadoLista);
panel_Empaques.Location = new System.Drawing.Point(-9, 27);
panel_Empaques.Name = "panel_Empaques";
panel_Empaques.Size = new System.Drawing.Size(804, 603);
panel_Empaques.TabIndex = 1;
//
// lbl_Cantidad_Empaque
//
lbl_Cantidad_Empaque.AutoSize = true;
lbl_Cantidad_Empaque.Location = new System.Drawing.Point(316, 261);
lbl_Cantidad_Empaque.Name = "lbl_Cantidad_Empaque";
lbl_Cantidad_Empaque.Size = new System.Drawing.Size(49, 13);
lbl_Cantidad_Empaque.TabIndex = 16;
lbl_Cantidad_Empaque.Text = "Cantidad";
//
// lbl_Cantidad_PTerminados
//
lbl_Cantidad_PTerminados.AutoSize = true;
lbl_Cantidad_PTerminados.Location = new System.Drawing.Point(316, 68);
lbl_Cantidad_PTerminados.Name = "lbl_Cantidad_PTerminados";
lbl_Cantidad_PTerminados.Size = new System.Drawing.Size(49, 13);
lbl_Cantidad_PTerminados.TabIndex = 15;
lbl_Cantidad_PTerminados.Text = "Cantidad";
//
// txt_Cantidad_Empaque
//
txt_Cantidad_Empaque.Location = new System.Drawing.Point(319, 277);
txt_Cantidad_Empaque.Name = "txt_Cantidad_Empaque";
txt_Cantidad_Empaque.Size = new System.Drawing.Size(100, 20);
txt_Cantidad_Empaque.TabIndex = 11;
//
// bttn_Quitar_Empaque
//
bttn_Quitar_Empaque.Location = new System.Drawing.Point(448, 306);
bttn_Quitar_Empaque.Name = "bttn_Quitar_Empaque";
bttn_Quitar_Empaque.Size = new System.Drawing.Size(75, 23);
bttn_Quitar_Empaque.TabIndex = 10;
bttn_Quitar_Empaque.Text = "<<";
bttn_Quitar_Empaque.UseVisualStyleBackColor = true;
//
// bttn_Agregar_Empaque
//
bttn_Agregar_Empaque.Location = new System.Drawing.Point(448, 277);
bttn_Agregar_Empaque.Name = "bttn_Agregar_Empaque";
bttn_Agregar_Empaque.Size = new System.Drawing.Size(75, 23);
bttn_Agregar_Empaque.TabIndex = 9;
bttn_Agregar_Empaque.Text = ">>";
bttn_Agregar_Empaque.UseVisualStyleBackColor = true;
//
// txt_Cantidad_PTerminados
//
txt_Cantidad_PTerminados.Location = new System.Drawing.Point(319, 84);
txt_Cantidad_PTerminados.Name = "txt_Cantidad_PTerminados";
txt_Cantidad_PTerminados.Size = new System.Drawing.Size(100, 20);
txt_Cantidad_PTerminados.TabIndex = 8;
//
// bttn_Quitar_PTerminados
//.........这里部分代码省略.........
示例3: FontDialog
public FontDialog( )
{
form = new DialogForm (this);
example_panel_text = char_sets [0];
okButton = new Button( );
cancelButton = new Button( );
applyButton = new Button( );
helpButton = new Button( );
fontTextBox = new TextBox( );
fontstyleTextBox = new TextBox( );
fontsizeTextBox = new TextBox( );
fontListBox = new MouseWheelListBox ();
fontsizeListBox = new MouseWheelListBox ();
fontstyleListBox = new MouseWheelListBox ();
fontLabel = new Label( );
fontstyleLabel = new Label( );
sizeLabel = new Label( );
scriptLabel = new Label( );
exampleGroupBox = new GroupBox( );
effectsGroupBox = new GroupBox( );
underlinedCheckBox = new CheckBox( );
strikethroughCheckBox = new CheckBox( );
scriptComboBox = new ComboBox( );
examplePanel = new Panel( );
colorComboBox = new ColorComboBox( this );
exampleGroupBox.SuspendLayout( );
effectsGroupBox.SuspendLayout( );
form.SuspendLayout( );
form.FormBorderStyle = FormBorderStyle.FixedDialog;
form.MaximizeBox = false;
// fontsizeListBox
fontsizeListBox.Location = new Point( 284, 47 );
fontsizeListBox.Size = new Size( 52, 95 );
fontsizeListBox.TabIndex = 10;
fontListBox.Sorted = true;
// fontTextBox
fontTextBox.Location = new Point( 16, 26 );
fontTextBox.Size = new Size( 140, 21 );
fontTextBox.TabIndex = 5;
fontTextBox.Text = "";
// fontstyleLabel
fontstyleLabel.Location = new Point( 164, 10 );
fontstyleLabel.Size = new Size( 100, 16 );
fontstyleLabel.TabIndex = 1;
fontstyleLabel.Text = "Font Style:";
// typesizeTextBox
fontsizeTextBox.Location = new Point( 284, 26 );
fontsizeTextBox.Size = new Size( 52, 21 );
fontsizeTextBox.TabIndex = 7;
fontsizeTextBox.Text = "";
fontsizeTextBox.MaxLength = 2;
// schriftartListBox
fontListBox.Location = new Point( 16, 47 );
fontListBox.Size = new Size( 140, 95 );
fontListBox.TabIndex = 8;
fontListBox.Sorted = true;
// exampleGroupBox
exampleGroupBox.Controls.Add( examplePanel );
exampleGroupBox.FlatStyle = FlatStyle.System;
exampleGroupBox.Location = new Point( 164, 158 );
exampleGroupBox.Size = new Size( 172, 70 );
exampleGroupBox.TabIndex = 12;
exampleGroupBox.TabStop = false;
exampleGroupBox.Text = "Example";
// fontstyleListBox
fontstyleListBox.Location = new Point( 164, 47 );
fontstyleListBox.Size = new Size( 112, 95 );
fontstyleListBox.TabIndex = 9;
// schriftartLabel
fontLabel.Location = new Point( 16, 10 );
fontLabel.Size = new Size( 88, 16 );
fontLabel.TabIndex = 0;
fontLabel.Text = "Font:";
// effectsGroupBox
effectsGroupBox.Controls.Add( underlinedCheckBox );
effectsGroupBox.Controls.Add( strikethroughCheckBox );
effectsGroupBox.Controls.Add( colorComboBox );
effectsGroupBox.FlatStyle = FlatStyle.System;
effectsGroupBox.Location = new Point( 16, 158 );
effectsGroupBox.Size = new Size( 140, 116 );
effectsGroupBox.TabIndex = 11;
effectsGroupBox.TabStop = false;
effectsGroupBox.Text = "Effects";
// strikethroughCheckBox
strikethroughCheckBox.FlatStyle = FlatStyle.System;
strikethroughCheckBox.Location = new Point( 8, 16 );
strikethroughCheckBox.TabIndex = 0;
strikethroughCheckBox.Text = "Strikethrough";
// colorComboBox
//.........这里部分代码省略.........
示例4: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.TableLayoutPanel mainTable;
System.Windows.Forms.TableLayoutPanel tableDirectories;
System.Windows.Forms.Label sourceLabel;
System.Windows.Forms.Label destinationListLabel;
System.Windows.Forms.FlowLayoutPanel destinationButtonsFlow;
System.Windows.Forms.Label defaultDestinationLabel;
System.Windows.Forms.GroupBox sortOptionsGroup;
System.Windows.Forms.FlowLayoutPanel sortOptionsFlow;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Settings));
System.Windows.Forms.GroupBox searchOptionsGroup;
System.Windows.Forms.FlowLayoutPanel searchOptionsFlow;
System.Windows.Forms.Button editOverwriteKeywordsButton;
System.Windows.Forms.GroupBox formatOptionsGroup;
System.Windows.Forms.TableLayoutPanel formatTable;
System.Windows.Forms.Label formatLabel;
System.Windows.Forms.FlowLayoutPanel flowBottomButtons;
this.groupDirectories = new System.Windows.Forms.GroupBox();
this.sourceText = new System.Windows.Forms.TextBox();
this.sourceBrowse = new System.Windows.Forms.Button();
this.destinationList = new System.Windows.Forms.ListBox();
this.addDestinationButton = new System.Windows.Forms.Button();
this.removeDestinationButton = new System.Windows.Forms.Button();
this.defaultDestinationDirectory = new System.Windows.Forms.ComboBox();
this.recurseSubdirectoriesCheck = new System.Windows.Forms.CheckBox();
this.deleteEmptyCheck = new System.Windows.Forms.CheckBox();
this.renameIfExistsCheck = new System.Windows.Forms.CheckBox();
this.addUnmatchedShowsCheck = new System.Windows.Forms.CheckBox();
this.unlockAndUpdateCheck = new System.Windows.Forms.CheckBox();
this.lockShowWithNoNewEpisodesCheck = new System.Windows.Forms.CheckBox();
this.regExButton = new System.Windows.Forms.Button();
this.fileExtensionsButton = new System.Windows.Forms.Button();
this.formatText = new System.Windows.Forms.TextBox();
this.formatBuilderButton = new System.Windows.Forms.Button();
this.revertButton = new System.Windows.Forms.Button();
this.saveButton = new System.Windows.Forms.Button();
this.folderDialog = new System.Windows.Forms.FolderBrowserDialog();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.label1 = new System.Windows.Forms.Label();
this.ignoreList = new System.Windows.Forms.ListBox();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.addIgnore_btn = new System.Windows.Forms.Button();
this.removeIgnore_btn = new System.Windows.Forms.Button();
mainTable = new System.Windows.Forms.TableLayoutPanel();
tableDirectories = new System.Windows.Forms.TableLayoutPanel();
sourceLabel = new System.Windows.Forms.Label();
destinationListLabel = new System.Windows.Forms.Label();
destinationButtonsFlow = new System.Windows.Forms.FlowLayoutPanel();
defaultDestinationLabel = new System.Windows.Forms.Label();
sortOptionsGroup = new System.Windows.Forms.GroupBox();
sortOptionsFlow = new System.Windows.Forms.FlowLayoutPanel();
searchOptionsGroup = new System.Windows.Forms.GroupBox();
searchOptionsFlow = new System.Windows.Forms.FlowLayoutPanel();
editOverwriteKeywordsButton = new System.Windows.Forms.Button();
formatOptionsGroup = new System.Windows.Forms.GroupBox();
formatTable = new System.Windows.Forms.TableLayoutPanel();
formatLabel = new System.Windows.Forms.Label();
flowBottomButtons = new System.Windows.Forms.FlowLayoutPanel();
mainTable.SuspendLayout();
this.groupDirectories.SuspendLayout();
tableDirectories.SuspendLayout();
destinationButtonsFlow.SuspendLayout();
sortOptionsGroup.SuspendLayout();
sortOptionsFlow.SuspendLayout();
searchOptionsGroup.SuspendLayout();
searchOptionsFlow.SuspendLayout();
formatOptionsGroup.SuspendLayout();
formatTable.SuspendLayout();
flowBottomButtons.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// mainTable
//
mainTable.ColumnCount = 1;
mainTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
mainTable.Controls.Add(this.groupDirectories, 0, 0);
mainTable.Controls.Add(sortOptionsGroup, 0, 2);
mainTable.Controls.Add(searchOptionsGroup, 0, 3);
mainTable.Controls.Add(formatOptionsGroup, 0, 1);
mainTable.Controls.Add(flowBottomButtons, 0, 4);
mainTable.Dock = System.Windows.Forms.DockStyle.Fill;
mainTable.Location = new System.Drawing.Point(0, 0);
mainTable.Name = "mainTable";
mainTable.RowCount = 5;
mainTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
mainTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 54F));
mainTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 95F));
mainTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 56F));
mainTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
mainTable.Size = new System.Drawing.Size(637, 450);
mainTable.TabIndex = 0;
//
// groupDirectories
//.........这里部分代码省略.........
示例5: InitializeComponent
private void InitializeComponent()
{
comboPorts = new System.Windows.Forms.ComboBox();
btnOK = new System.Windows.Forms.Button();
btnCancel = new System.Windows.Forms.Button();
groupELM = new System.Windows.Forms.GroupBox();
comboInitialize = new System.Windows.Forms.ComboBox();
label3 = new System.Windows.Forms.Label();
comboProtocol = new System.Windows.Forms.ComboBox();
label2 = new System.Windows.Forms.Label();
comboBaud = new System.Windows.Forms.ComboBox();
label1 = new System.Windows.Forms.Label();
groupComm = new System.Windows.Forms.GroupBox();
groupHardware = new System.Windows.Forms.GroupBox();
comboHardware = new System.Windows.Forms.ComboBox();
checkBoxAutoDetect = new System.Windows.Forms.CheckBox();
groupELM.SuspendLayout();
groupComm.SuspendLayout();
groupHardware.SuspendLayout();
SuspendLayout();
//
// comboPorts
//
comboPorts.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
comboPorts.Location = new System.Drawing.Point(17, 20);
comboPorts.Name = "comboPorts";
comboPorts.Size = new System.Drawing.Size(103, 21);
comboPorts.TabIndex = 0;
//
// btnOK
//
btnOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
btnOK.Location = new System.Drawing.Point(132, 229);
btnOK.Name = "btnOK";
btnOK.Size = new System.Drawing.Size(75, 23);
btnOK.TabIndex = 4;
btnOK.Text = "&Save";
btnOK.Click += new System.EventHandler(btnOK_Click);
//
// btnCancel
//
btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
btnCancel.Location = new System.Drawing.Point(212, 229);
btnCancel.Name = "btnCancel";
btnCancel.Size = new System.Drawing.Size(75, 23);
btnCancel.TabIndex = 5;
btnCancel.Text = "&Cancel";
//
// groupELM
//
groupELM.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
groupELM.Controls.Add(comboInitialize);
groupELM.Controls.Add(label3);
groupELM.Controls.Add(comboProtocol);
groupELM.Controls.Add(label2);
groupELM.Controls.Add(comboBaud);
groupELM.Controls.Add(label1);
groupELM.Location = new System.Drawing.Point(10, 105);
groupELM.Name = "groupELM";
groupELM.Size = new System.Drawing.Size(397, 114);
groupELM.TabIndex = 3;
groupELM.TabStop = false;
groupELM.Text = "ELM327 &Configuration";
//
// comboInitialize
//
comboInitialize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
comboInitialize.Items.AddRange(new object[] {
"Initialize",
"Bypass Initialization"});
comboInitialize.Location = new System.Drawing.Point(93, 80);
comboInitialize.Name = "comboInitialize";
comboInitialize.Size = new System.Drawing.Size(167, 21);
comboInitialize.TabIndex = 5;
//
// label3
//
label3.Location = new System.Drawing.Point(6, 80);
label3.Name = "label3";
label3.Size = new System.Drawing.Size(80, 20);
label3.TabIndex = 4;
label3.Text = "&Initialization:";
label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// comboProtocol
//
comboProtocol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
comboProtocol.Items.AddRange(new object[] {
"Automatic",
"SAE J1850 PWM (41.6 Kbaud)",
"SAE J1850 VPW (10.4 Kbaud)",
"ISO 9141-2 (5 baud init, 10.4 Kbaud)",
"ISO 14230-4 KWP (5 baud init, 10.4 Kbaud)",
"ISO 14230-4 KWP (fast init, 10.4 Kbaud)",
"ISO 15765-4 CAN (11 bit ID, 500 Kbaud)",
"ISO 15765-4 CAN (29 bit ID, 500 Kbaud)",
"ISO 15765-4 CAN (11 bit ID, 250 Kbaud)",
"ISO 15765-4 CAN (29 bit ID, 250 Kbaud)"});
comboProtocol.Location = new System.Drawing.Point(93, 50);
//.........这里部分代码省略.........
示例6: InitializeComponent
//.........这里部分代码省略.........
txbLost = new System.Windows.Forms.TextBox();
txbPER = new System.Windows.Forms.TextBox();
txbPackets = new System.Windows.Forms.TextBox();
pnlRXFIFO = new System.Windows.Forms.Panel();
dgvRX = new System.Windows.Forms.DataGridView();
dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
xpdC = new System.Windows.Forms.DataGridViewTextBoxColumn();
errC = new System.Windows.Forms.DataGridViewTextBoxColumn();
btnSaveRead = new System.Windows.Forms.Button();
btnOpenRead = new System.Windows.Forms.Button();
btnRead = new System.Windows.Forms.Button();
pnlTXFIFO = new System.Windows.Forms.Panel();
dgvTX = new System.Windows.Forms.DataGridView();
numC = new System.Windows.Forms.DataGridViewTextBoxColumn();
dataC = new System.Windows.Forms.DataGridViewTextBoxColumn();
btnSaveWrite = new System.Windows.Forms.Button();
btnOpenWrite = new System.Windows.Forms.Button();
btnWrite = new System.Windows.Forms.Button();
tbpDescription = new System.Windows.Forms.TabPage();
txbDescription = new System.Windows.Forms.RichTextBox();
chbDisableLogging = new System.Windows.Forms.CheckBox();
lblTermWin = new System.Windows.Forms.Label();
btnClearLog = new System.Windows.Forms.Button();
rtbLogWindow = new System.Windows.Forms.RichTextBox();
spiStatusBar = new System.Windows.Forms.StatusBar();
statusBarPanel1 = new System.Windows.Forms.StatusBarPanel();
sbChipRevPane = new System.Windows.Forms.StatusBarPanel();
sbDeviceStatePane = new System.Windows.Forms.StatusBarPanel();
statusBarPanel4 = new StatusBarTest.StatusBarProgressPanel();
tmrCommon = new System.Windows.Forms.Timer(components);
ttpMainToolTip = new System.Windows.Forms.ToolTip(components);
tsrMainToolStrip = new NewWDS.Applications.App_Common.AppToolStrip.ApplicationToolStrip();
grbRegisterFilter.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(dgvRegisterList)).BeginInit();
groupBox1.SuspendLayout();
spcMainContainer.Panel1.SuspendLayout();
spcMainContainer.Panel2.SuspendLayout();
spcMainContainer.SuspendLayout();
grbLog.SuspendLayout();
tbcMain.SuspendLayout();
tabPage4.SuspendLayout();
grbBatch.SuspendLayout();
pnlBatchMain.SuspendLayout();
pnlBatch4.SuspendLayout();
pnlBatch3.SuspendLayout();
pnlBatch2.SuspendLayout();
pnlBatch1.SuspendLayout();
vrbViewBatch.SuspendLayout();
grbSaveLoad.SuspendLayout();
grbLoopControl.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(nudLoopLimit)).BeginInit();
tbpFIFO.SuspendLayout();
pnlBerPer.SuspendLayout();
pnlRXFIFO.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(dgvRX)).BeginInit();
pnlTXFIFO.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(dgvTX)).BeginInit();
tbpDescription.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(statusBarPanel1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(sbChipRevPane)).BeginInit();
((System.ComponentModel.ISupportInitialize)(sbDeviceStatePane)).BeginInit();
((System.ComponentModel.ISupportInitialize)(statusBarPanel4)).BeginInit();
SuspendLayout();
//
// grbRegisterFilter
示例7: SuspendLayout
private void Diseño_Forma()
{
components = new System.ComponentModel.Container();
pic_Logo = new System.Windows.Forms.PictureBox();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Indirecto));
menuStrip1 = new System.Windows.Forms.MenuStrip();
archivoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
nuevoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
abrirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
guardarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
salirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
editarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
modificarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
eliminarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
ayudaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
acercadeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
pic_Indirecto = new System.Windows.Forms.PictureBox();
groupBoxdatos = new System.Windows.Forms.GroupBox();
txt_Medida = new System.Windows.Forms.TextBox();
lbl_Medida = new System.Windows.Forms.Label();
txt_Tamaño = new System.Windows.Forms.TextBox();
txt_Descripcion = new System.Windows.Forms.TextBox();
txt_Nombre = new System.Windows.Forms.TextBox();
txt_Clave = new System.Windows.Forms.TextBox();
lbl_Tamaño = new System.Windows.Forms.Label();
lbl_Descripcion = new System.Windows.Forms.Label();
lbl_Nombre = new System.Windows.Forms.Label();
lbl_Clave = new System.Windows.Forms.Label();
groupBoxfoto = new System.Windows.Forms.GroupBox();
btn_Buscar = new System.Windows.Forms.Button();
errorProvider1 = new System.Windows.Forms.ErrorProvider(components);
menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(pic_Indirecto)).BeginInit();
groupBoxdatos.SuspendLayout();
groupBoxfoto.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(errorProvider1)).BeginInit();
SuspendLayout();
//
// menuStrip1
//
menuStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(186)))), ((int)(((byte)(82)))));
menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
archivoToolStripMenuItem,
editarToolStripMenuItem,
ayudaToolStripMenuItem});
menuStrip1.Location = new System.Drawing.Point(0, 0);
menuStrip1.Name = "menuStrip1";
menuStrip1.Size = new System.Drawing.Size(571, 24);
menuStrip1.TabIndex = 1;
menuStrip1.Text = "menuStrip1";
//
// archivoToolStripMenuItem
//
archivoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
nuevoToolStripMenuItem,
abrirToolStripMenuItem,
toolStripSeparator,
guardarToolStripMenuItem,
toolStripSeparator1,
toolStripSeparator2,
salirToolStripMenuItem});
archivoToolStripMenuItem.Name = "archivoToolStripMenuItem";
archivoToolStripMenuItem.Size = new System.Drawing.Size(55, 20);
archivoToolStripMenuItem.Text = "&Archivo";
//
// nuevoToolStripMenuItem
//
nuevoToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("nuevoToolStripMenuItem.Image")));
nuevoToolStripMenuItem.Image = global::Shajobe.Properties.Resources.Nuevo;
nuevoToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
nuevoToolStripMenuItem.Name = "nuevoToolStripMenuItem";
nuevoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
nuevoToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
nuevoToolStripMenuItem.Text = "&Nuevo";
nuevoToolStripMenuItem.Click += new System.EventHandler(nuevoToolStripMenuItem_Click);
//
// abrirToolStripMenuItem
//
abrirToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("abrirToolStripMenuItem.Image")));
abrirToolStripMenuItem.Image = global::Shajobe.Properties.Resources.Abrir;
abrirToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
abrirToolStripMenuItem.Name = "abrirToolStripMenuItem";
abrirToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
abrirToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
abrirToolStripMenuItem.Text = "&Abrir";
abrirToolStripMenuItem.Click += new System.EventHandler(abrirToolStripMenuItem_Click);
//
// toolStripSeparator
//
toolStripSeparator.Name = "toolStripSeparator";
toolStripSeparator.Size = new System.Drawing.Size(148, 6);
//
// guardarToolStripMenuItem
//
guardarToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("guardarToolStripMenuItem.Image")));
guardarToolStripMenuItem.Image = global::Shajobe.Properties.Resources.Guardar;
//.........这里部分代码省略.........
示例8: redrawStations
private void redrawStations()
{
switch(CompetitionType)
{
case Structs.CompetitionTypeEnum.Precision:
groupBoxWidth = 80;
groupBoxHeight = 110; // 80
break;
case Structs.CompetitionTypeEnum.Field:
groupBoxWidth = 80;
groupBoxHeight = 125;
break;
case Structs.CompetitionTypeEnum.MagnumField:
groupBoxWidth = 80;
groupBoxHeight = 125;
break;
default:
throw new ApplicationException("Unknown Competition Type:" +
CompetitionType.ToString());
}
groupBoxNextY = groupBoxHeight + 10;
groupBoxNextX = groupBoxWidth + 10;
clearCurrentStations();
// NextGroup Startposition
int x = groupBoxStartX;
int y = groupBoxStartY;
// Draw all stations on screen
Structs.Station[] stations = CommonCode.GetStations();
Structs.Competition comp = CommonCode.GetCompetitions()[0];
//bool norwegianCount = comp.NorwegianCount;
bool doFinalShooting = comp.DoFinalShooting;
foreach(Structs.Station station in stations)
{
// Create new group
GroupBox thisGroup = new GroupBox();
thisGroup.SuspendLayout();
thisGroup.Location = new System.Drawing.Point(x, y);
setNewGroupBoxDrawPoint(ref x, ref y);
thisGroup.Name = "target" + station.StationNr.ToString();
thisGroup.Size = new System.Drawing.Size(groupBoxWidth, groupBoxHeight);
thisGroup.TabStop = false;
switch (CompetitionType)
{
case Structs.CompetitionTypeEnum.Precision:
thisGroup.Text = "Serie " + station.StationNr.ToString();
break;
case Structs.CompetitionTypeEnum.Field:
thisGroup.Text = "Station " + station.StationNr.ToString();
break;
case Structs.CompetitionTypeEnum.MagnumField:
thisGroup.Text = "Station " + station.StationNr.ToString();
break;
default:
throw new ApplicationException("Unknown CompetitionType: " +
CompetitionType.ToString());
}
// Add SafeLabels
SafeLabel SafeLabelPoints = new Forms.SafeLabel();
SafeLabelPoints.Location = new System.Drawing.Point(4, groupBoxHeight-25);
SafeLabelPoints.Text = "P:";
SafeLabelPoints.Size = new System.Drawing.Size(20, 23);
thisGroup.Controls.Add(SafeLabelPoints);
// Add txtBoxes
foreach(SafeTextBox thisBox in createTxtBoxes(station.StationNr, station.Figures))
{
thisGroup.Controls.Add(thisBox);
thisBox.TextChanged+=new EventHandler(figureBox_TextChanged);
thisBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
resultFigures.Add(thisBox);
}
// Add points txtBox
Allberg.Shooter.Windows.Forms.SafeTextBox txtPoints = new SafeTextBox();
txtPoints.Name = "Points" + station.StationNr.ToString();
txtPoints.Location = new Point(SafeLabelPoints.Width+5, groupBoxHeight-25);
txtPoints.Text = "";
txtPoints.Size = new Size(30,20);
txtPoints.Enabled = station.Points;
txtPoints.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
txtPoints.TextChanged += new System.EventHandler(this.txtPoints_TextChanged);
thisGroup.Controls.Add(txtPoints);
if (CompetitionType == Structs.CompetitionTypeEnum.Precision)
{
txtPoints.Visible = false;
SafeLabelPoints.Visible = false;
}
resultPoints.Add(txtPoints);
// Draw the whole thing
thisGroup.ResumeLayout();
// Add to form
this.panel1.Controls.Add(thisGroup);
//.........这里部分代码省略.........
示例9: 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.GroupBox userGroup;
System.Windows.Forms.Label passwordAnswer;
System.Windows.Forms.Button resetPasswordButton;
System.Windows.Forms.Label passwordQuestionLabel;
System.Windows.Forms.Label userNameLabel;
this.m_PasswordAnswerTextBox = new System.Windows.Forms.TextBox();
this.m_PasswordQuestionTextBox = new System.Windows.Forms.TextBox();
this.m_UserNameTextBox = new System.Windows.Forms.TextBox();
this.m_Validator = new System.Windows.Forms.ErrorProvider(this.components);
userGroup = new System.Windows.Forms.GroupBox();
passwordAnswer = new System.Windows.Forms.Label();
resetPasswordButton = new System.Windows.Forms.Button();
passwordQuestionLabel = new System.Windows.Forms.Label();
userNameLabel = new System.Windows.Forms.Label();
userGroup.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.m_Validator)).BeginInit();
this.SuspendLayout();
//
// userGroup
//
userGroup.Controls.Add(this.m_PasswordAnswerTextBox);
userGroup.Controls.Add(passwordAnswer);
userGroup.Controls.Add(resetPasswordButton);
userGroup.Controls.Add(this.m_PasswordQuestionTextBox);
userGroup.Controls.Add(passwordQuestionLabel);
userGroup.Controls.Add(this.m_UserNameTextBox);
userGroup.Controls.Add(userNameLabel);
userGroup.Location = new System.Drawing.Point(6,11);
userGroup.Name = "userGroup";
userGroup.Size = new System.Drawing.Size(216,146);
userGroup.TabIndex = 1;
userGroup.TabStop = false;
userGroup.Text = "User Account:";
//
// m_PasswordAnswerTextBox
//
this.m_PasswordAnswerTextBox.Location = new System.Drawing.Point(7,116);
this.m_PasswordAnswerTextBox.Name = "m_PasswordAnswerTextBox";
this.m_PasswordAnswerTextBox.Size = new System.Drawing.Size(100,20);
this.m_PasswordAnswerTextBox.TabIndex = 15;
//
// passwordAnswer
//
passwordAnswer.AutoSize = true;
passwordAnswer.Location = new System.Drawing.Point(6,100);
passwordAnswer.Name = "passwordAnswer";
passwordAnswer.Size = new System.Drawing.Size(94,13);
passwordAnswer.TabIndex = 14;
passwordAnswer.Text = "Password Answer:";
//
// resetPasswordButton
//
resetPasswordButton.Location = new System.Drawing.Point(121,32);
resetPasswordButton.Name = "resetPasswordButton";
resetPasswordButton.Size = new System.Drawing.Size(88,23);
resetPasswordButton.TabIndex = 4;
resetPasswordButton.Text = "Reset";
resetPasswordButton.Click += new System.EventHandler(this.OnReset);
//
// m_PasswordQuestionTextBox
//
this.m_PasswordQuestionTextBox.Enabled = false;
this.m_PasswordQuestionTextBox.Location = new System.Drawing.Point(7,74);
this.m_PasswordQuestionTextBox.Name = "m_PasswordQuestionTextBox";
this.m_PasswordQuestionTextBox.Size = new System.Drawing.Size(100,20);
this.m_PasswordQuestionTextBox.TabIndex = 9;
//
// passwordQuestionLabel
//
passwordQuestionLabel.AutoSize = true;
passwordQuestionLabel.Location = new System.Drawing.Point(6,58);
passwordQuestionLabel.Name = "passwordQuestionLabel";
passwordQuestionLabel.Size = new System.Drawing.Size(93,13);
passwordQuestionLabel.TabIndex = 8;
passwordQuestionLabel.Text = "Security Question:";
//
// m_UserNameTextBox
//
this.m_UserNameTextBox.Enabled = false;
this.m_UserNameTextBox.Location = new System.Drawing.Point(6,35);
this.m_UserNameTextBox.Name = "m_UserNameTextBox";
this.m_UserNameTextBox.ReadOnly = true;
this.m_UserNameTextBox.Size = new System.Drawing.Size(100,20);
this.m_UserNameTextBox.TabIndex = 1;
//
// userNameLabel
//
userNameLabel.AutoSize = true;
userNameLabel.Location = new System.Drawing.Point(5,19);
userNameLabel.Name = "userNameLabel";
userNameLabel.Size = new System.Drawing.Size(63,13);
userNameLabel.TabIndex = 0;
userNameLabel.Text = "User Name:";
//.........这里部分代码省略.........
示例10: SuspendLayout
private void Diseño_Forma()
{
components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Almacen));
groupBoxdatos = new System.Windows.Forms.GroupBox();
txt_Lugar = new System.Windows.Forms.TextBox();
txt_Nombre = new System.Windows.Forms.TextBox();
lbl_Lugar = new System.Windows.Forms.Label();
lbl_Nombre = new System.Windows.Forms.Label();
menuStrip1 = new System.Windows.Forms.MenuStrip();
archivoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
nuevoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
abrirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
guardarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
salirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
editarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
modificarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
eliminarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
ayudaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
acercadeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
errorProvider1 = new System.Windows.Forms.ErrorProvider(components);
pic_Almacen = new System.Windows.Forms.PictureBox();
groupBoxdatos.SuspendLayout();
menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(errorProvider1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(pic_Almacen)).BeginInit();
SuspendLayout();
pic_Logo = new System.Windows.Forms.PictureBox();
components = new System.ComponentModel.Container();
groupBoxdatos = new System.Windows.Forms.GroupBox();
txt_Lugar = new System.Windows.Forms.TextBox();
txt_Nombre = new System.Windows.Forms.TextBox();
lbl_Lugar = new System.Windows.Forms.Label();
lbl_Nombre = new System.Windows.Forms.Label();
menuStrip1 = new System.Windows.Forms.MenuStrip();
archivoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
nuevoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
abrirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
guardarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
salirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
editarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
modificarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
eliminarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
ayudaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
acercadeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
errorProvider1 = new System.Windows.Forms.ErrorProvider(components);
pic_Almacen = new System.Windows.Forms.PictureBox();
groupBoxdatos.SuspendLayout();
menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(errorProvider1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(pic_Almacen)).BeginInit();
SuspendLayout();
//
// groupBoxdatos
//
groupBoxdatos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
groupBoxdatos.Controls.Add(txt_Lugar);
groupBoxdatos.Controls.Add(txt_Nombre);
groupBoxdatos.Controls.Add(lbl_Lugar);
groupBoxdatos.Controls.Add(lbl_Nombre);
groupBoxdatos.Location = new System.Drawing.Point(11, 69);
groupBoxdatos.Name = "groupBoxdatos";
groupBoxdatos.Size = new System.Drawing.Size(418, 130);
groupBoxdatos.TabIndex = 75;
groupBoxdatos.TabStop = false;
groupBoxdatos.Text = "Datos del almacen";
//
// txt_Lugar
//
txt_Lugar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
txt_Lugar.Location = new System.Drawing.Point(126, 77);
txt_Lugar.MaxLength = 100;
txt_Lugar.Name = "txt_Lugar";
txt_Lugar.Size = new System.Drawing.Size(270, 40);
txt_Lugar.Multiline = true;
txt_Lugar.TabIndex = 73;
txt_Lugar.KeyPress += new System.Windows.Forms.KeyPressEventHandler(txt_Lugar_KeyPress);
//
// txt_Nombre
//
txt_Nombre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
txt_Nombre.Location = new System.Drawing.Point(126, 52);
txt_Nombre.MaxLength = 25;
txt_Nombre.Name = "txt_Nombre";
txt_Nombre.Size = new System.Drawing.Size(127, 20);
txt_Nombre.TabIndex = 72;
txt_Nombre.KeyPress += new System.Windows.Forms.KeyPressEventHandler(txt_Nombre_KeyPress);
//
// lbl_Lugar
//
lbl_Lugar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
lbl_Lugar.AutoSize = true;
//.........这里部分代码省略.........
示例11: InitializeComponent
private void InitializeComponent()
{
ComponentResourceManager manager = new ComponentResourceManager(typeof(BookmarkTabDialog));
this.txtHotkey = new HotKeyBox();
this.lblHotkey = new Label();
this.lblBookmarkName = new Label();
this.txtBookmarkName = new TextBox();
this.chkDoNotShowAgain = new CheckBox();
this.btnOk = new Button();
this.btnCancel = new Button();
this.Validator = new ValidatorProvider();
this.bvlButtons = new Bevel();
GroupBox box = new GroupBox();
TableLayoutPanel panel = new TableLayoutPanel();
TableLayoutPanel panel2 = new TableLayoutPanel();
TableLayoutPanel panel3 = new TableLayoutPanel();
box.SuspendLayout();
panel.SuspendLayout();
panel2.SuspendLayout();
panel3.SuspendLayout();
base.SuspendLayout();
manager.ApplyResources(box, "grpAdditional");
box.Controls.Add(panel);
box.Name = "grpAdditional";
box.TabStop = false;
manager.ApplyResources(panel, "tlpAdditional");
panel.Controls.Add(this.txtHotkey, 1, 0);
panel.Controls.Add(this.lblHotkey, 0, 0);
panel.GrowStyle = TableLayoutPanelGrowStyle.FixedSize;
panel.Name = "tlpAdditional";
manager.ApplyResources(this.txtHotkey, "txtHotkey");
this.txtHotkey.Name = "txtHotkey";
manager.ApplyResources(this.lblHotkey, "lblHotkey");
this.lblHotkey.Name = "lblHotkey";
manager.ApplyResources(panel2, "tlpBack");
panel2.Controls.Add(this.lblBookmarkName, 0, 0);
panel2.Controls.Add(this.txtBookmarkName, 0, 1);
panel2.Controls.Add(box, 0, 2);
panel2.Controls.Add(this.chkDoNotShowAgain, 0, 3);
panel2.GrowStyle = TableLayoutPanelGrowStyle.FixedSize;
panel2.Name = "tlpBack";
manager.ApplyResources(this.lblBookmarkName, "lblBookmarkName");
this.lblBookmarkName.Name = "lblBookmarkName";
manager.ApplyResources(this.txtBookmarkName, "txtBookmarkName");
this.txtBookmarkName.Name = "txtBookmarkName";
this.Validator.SetValidateOn(this.txtBookmarkName, ValidateOn.TextChanged);
this.txtBookmarkName.Validating += new CancelEventHandler(this.txtBookmarkName_Validating);
manager.ApplyResources(this.chkDoNotShowAgain, "chkDoNotShowAgain");
this.chkDoNotShowAgain.Name = "chkDoNotShowAgain";
this.chkDoNotShowAgain.UseVisualStyleBackColor = true;
manager.ApplyResources(panel3, "tlpButtons");
panel3.BackColor = Color.Gainsboro;
panel3.Controls.Add(this.btnOk, 1, 0);
panel3.Controls.Add(this.btnCancel, 2, 0);
panel3.GrowStyle = TableLayoutPanelGrowStyle.FixedSize;
panel3.Name = "tlpButtons";
this.btnOk.DialogResult = DialogResult.OK;
manager.ApplyResources(this.btnOk, "btnOk");
this.btnOk.Name = "btnOk";
this.btnOk.UseVisualStyleBackColor = true;
this.btnCancel.CausesValidation = false;
this.btnCancel.DialogResult = DialogResult.Cancel;
manager.ApplyResources(this.btnCancel, "btnCancel");
this.btnCancel.Name = "btnCancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.Validator.Owner = this;
this.Validator.OwnerFormValidate = FormValidate.DisableAcceptButton;
manager.ApplyResources(this.bvlButtons, "bvlButtons");
this.bvlButtons.ForeColor = SystemColors.ControlDarkDark;
this.bvlButtons.Name = "bvlButtons";
this.bvlButtons.Sides = Border3DSide.Top;
this.bvlButtons.Style = Border3DStyle.Flat;
base.AcceptButton = this.btnOk;
manager.ApplyResources(this, "$this");
base.AutoScaleMode = AutoScaleMode.Font;
this.AutoValidate = AutoValidate.EnableAllowFocusChange;
base.CancelButton = this.btnCancel;
base.Controls.Add(panel3);
base.Controls.Add(this.bvlButtons);
base.Controls.Add(panel2);
base.FormBorderStyle = FormBorderStyle.FixedDialog;
base.MaximizeBox = false;
base.MinimizeBox = false;
base.Name = "BookmarkTabDialog";
base.ShowInTaskbar = false;
box.ResumeLayout(false);
box.PerformLayout();
panel.ResumeLayout(false);
panel.PerformLayout();
panel2.ResumeLayout(false);
panel2.PerformLayout();
panel3.ResumeLayout(false);
base.ResumeLayout(false);
base.PerformLayout();
}
示例12: SuspendLayout
private void Diseño_Forma()
{
components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Cliente));
menuStrip1 = new System.Windows.Forms.MenuStrip();
archivoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
nuevoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
abrirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
guardarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
salirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
editarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
modificarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
eliminarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
ayudaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
acercadeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
pic_Cliente = new System.Windows.Forms.PictureBox();
groupBoxdatos = new System.Windows.Forms.GroupBox();
groupBoxfoto = new System.Windows.Forms.GroupBox();
btn_BuscarI = new System.Windows.Forms.Button();
txt_Diascredito = new System.Windows.Forms.TextBox();
txt_LimiteCredito = new System.Windows.Forms.TextBox();
txt_Saldo = new System.Windows.Forms.TextBox();
txt_NombreContacto = new System.Windows.Forms.TextBox();
txt_Email = new System.Windows.Forms.TextBox();
txt_Telefono = new System.Windows.Forms.TextBox();
txt_CP = new System.Windows.Forms.TextBox();
txt_Estado = new System.Windows.Forms.TextBox();
txt_Ciudad = new System.Windows.Forms.TextBox();
txt_Direccion = new System.Windows.Forms.TextBox();
txt_ApellidoM = new System.Windows.Forms.TextBox();
txt_ApellidoP = new System.Windows.Forms.TextBox();
txt_Nombre = new System.Windows.Forms.TextBox();
txt_RazonSocial = new System.Windows.Forms.TextBox();
txt_RFC = new System.Windows.Forms.TextBox();
lbl_Dias = new System.Windows.Forms.Label();
lbl_LimiteCredito = new System.Windows.Forms.Label();
lbl_Saldo = new System.Windows.Forms.Label();
lbl_NombreContacto = new System.Windows.Forms.Label();
lbl_Email = new System.Windows.Forms.Label();
lbl_Telefono = new System.Windows.Forms.Label();
lbl_CP = new System.Windows.Forms.Label();
lbl_Estado = new System.Windows.Forms.Label();
lbl_Ciudad = new System.Windows.Forms.Label();
lbl_Direccion = new System.Windows.Forms.Label();
lbl_ApellidoM = new System.Windows.Forms.Label();
lbl_ApellidoP = new System.Windows.Forms.Label();
lbl_Nombre = new System.Windows.Forms.Label();
lbl_Razon_Social = new System.Windows.Forms.Label();
lbl_RFC = new System.Windows.Forms.Label();
pic_Logo = new System.Windows.Forms.PictureBox();
errorProvider1 = new System.Windows.Forms.ErrorProvider(components);
menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(pic_Cliente)).BeginInit();
groupBoxdatos.SuspendLayout();
groupBoxfoto.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(errorProvider1)).BeginInit();
SuspendLayout();
//
// menuStrip1
//
menuStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(186)))), ((int)(((byte)(82)))));
menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
archivoToolStripMenuItem,
editarToolStripMenuItem,
ayudaToolStripMenuItem});
menuStrip1.Location = new System.Drawing.Point(0, 0);
menuStrip1.Name = "menuStrip1";
menuStrip1.Size = new System.Drawing.Size(604, 24);
menuStrip1.TabIndex = 0;
menuStrip1.Text = "menuStrip1";
//
// archivoToolStripMenuItem
//
archivoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
nuevoToolStripMenuItem,
abrirToolStripMenuItem,
toolStripSeparator,
guardarToolStripMenuItem,
toolStripSeparator2,
salirToolStripMenuItem});
archivoToolStripMenuItem.Name = "archivoToolStripMenuItem";
archivoToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
archivoToolStripMenuItem.Text = "&Archivo";
//
// nuevoToolStripMenuItem
//
nuevoToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("nuevoToolStripMenuItem.Image")));
nuevoToolStripMenuItem.Image = global::Sistema_Shajobe.Properties.Resources.Nuevo;
nuevoToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
nuevoToolStripMenuItem.Name = "nuevoToolStripMenuItem";
nuevoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
nuevoToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
nuevoToolStripMenuItem.Text = "&Nuevo";
nuevoToolStripMenuItem.Click += new System.EventHandler(nuevoToolStripMenuItem_Click);
//
// abrirToolStripMenuItem
//
abrirToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("abrirToolStripMenuItem.Image")));
//.........这里部分代码省略.........
示例13: InitializeComponent
private void InitializeComponent()
{
ComponentResourceManager manager = new ComponentResourceManager(typeof(CompareFoldersDialog));
this.chkCompareContent = new CheckBox();
this.chkCompareSize = new CheckBox();
this.chkAsyncCompareContent = new CheckBox();
this.chkCompareDateTime = new CheckBox();
this.chkCompareAttributes = new CheckBox();
this.rbUnselect = new RadioButton();
this.rbSelect = new RadioButton();
this.btnOk = new Button();
this.btnCancel = new Button();
this.tlpButtons = new TableLayoutPanel();
this.bvlButtons = new Bevel();
GroupBox box = new GroupBox();
GroupBox box2 = new GroupBox();
TableLayoutPanel panel = new TableLayoutPanel();
box.SuspendLayout();
box2.SuspendLayout();
panel.SuspendLayout();
this.tlpButtons.SuspendLayout();
base.SuspendLayout();
box.Controls.Add(this.chkCompareContent);
box.Controls.Add(this.chkCompareSize);
box.Controls.Add(this.chkAsyncCompareContent);
box.Controls.Add(this.chkCompareDateTime);
box.Controls.Add(this.chkCompareAttributes);
manager.ApplyResources(box, "grpOptions");
box.Name = "grpOptions";
box.TabStop = false;
manager.ApplyResources(this.chkCompareContent, "chkCompareContent");
this.chkCompareContent.Name = "chkCompareContent";
this.chkCompareContent.UseVisualStyleBackColor = true;
this.chkCompareContent.CheckedChanged += new EventHandler(this.chkCompareContent_CheckedChanged);
manager.ApplyResources(this.chkCompareSize, "chkCompareSize");
this.chkCompareSize.Checked = true;
this.chkCompareSize.CheckState = CheckState.Checked;
this.chkCompareSize.Name = "chkCompareSize";
this.chkCompareSize.UseVisualStyleBackColor = true;
this.chkCompareSize.CheckedChanged += new EventHandler(this.chkCompareSize_CheckedChanged);
manager.ApplyResources(this.chkAsyncCompareContent, "chkAsyncCompareContent");
this.chkAsyncCompareContent.Checked = true;
this.chkAsyncCompareContent.CheckState = CheckState.Indeterminate;
this.chkAsyncCompareContent.Name = "chkAsyncCompareContent";
this.chkAsyncCompareContent.ThreeState = true;
this.chkAsyncCompareContent.UseVisualStyleBackColor = true;
manager.ApplyResources(this.chkCompareDateTime, "chkCompareDateTime");
this.chkCompareDateTime.Checked = true;
this.chkCompareDateTime.CheckState = CheckState.Checked;
this.chkCompareDateTime.Name = "chkCompareDateTime";
this.chkCompareDateTime.UseVisualStyleBackColor = true;
manager.ApplyResources(this.chkCompareAttributes, "chkCompareAttributes");
this.chkCompareAttributes.Name = "chkCompareAttributes";
this.chkCompareAttributes.UseVisualStyleBackColor = true;
box2.Controls.Add(this.rbUnselect);
box2.Controls.Add(this.rbSelect);
manager.ApplyResources(box2, "grpSelect");
box2.Name = "grpSelect";
box2.TabStop = false;
manager.ApplyResources(this.rbUnselect, "rbUnselect");
this.rbUnselect.Name = "rbUnselect";
this.rbUnselect.UseVisualStyleBackColor = true;
manager.ApplyResources(this.rbSelect, "rbSelect");
this.rbSelect.Checked = true;
this.rbSelect.Name = "rbSelect";
this.rbSelect.TabStop = true;
this.rbSelect.UseVisualStyleBackColor = true;
manager.ApplyResources(panel, "tlpBack");
panel.Controls.Add(box2, 0, 1);
panel.Controls.Add(box, 0, 0);
panel.Name = "tlpBack";
manager.ApplyResources(this.btnOk, "btnOk");
this.btnOk.DialogResult = DialogResult.OK;
this.btnOk.Name = "btnOk";
this.btnOk.UseVisualStyleBackColor = true;
manager.ApplyResources(this.btnCancel, "btnCancel");
this.btnCancel.DialogResult = DialogResult.Cancel;
this.btnCancel.Name = "btnCancel";
this.btnCancel.UseVisualStyleBackColor = true;
manager.ApplyResources(this.tlpButtons, "tlpButtons");
this.tlpButtons.Controls.Add(this.btnOk, 1, 0);
this.tlpButtons.Controls.Add(this.btnCancel, 2, 0);
this.tlpButtons.GrowStyle = TableLayoutPanelGrowStyle.FixedSize;
this.tlpButtons.Name = "tlpButtons";
manager.ApplyResources(this.bvlButtons, "bvlButtons");
this.bvlButtons.ForeColor = SystemColors.ControlDarkDark;
this.bvlButtons.Name = "bvlButtons";
this.bvlButtons.Sides = Border3DSide.Top;
this.bvlButtons.Style = Border3DStyle.Flat;
base.AcceptButton = this.btnOk;
manager.ApplyResources(this, "$this");
base.AutoScaleMode = AutoScaleMode.Font;
base.CancelButton = this.btnCancel;
base.Controls.Add(this.tlpButtons);
base.Controls.Add(this.bvlButtons);
base.Controls.Add(panel);
base.FormBorderStyle = FormBorderStyle.FixedDialog;
base.MaximizeBox = false;
base.MinimizeBox = false;
base.Name = "CompareFoldersDialog";
//.........这里部分代码省略.........
示例14: InitializeComponent
private void InitializeComponent()
{
ComponentResourceManager manager = new ComponentResourceManager(typeof(FtpConnectDialog));
this.rbAnonymous = new System.Windows.Forms.RadioButton();
this.chkShowPassword = new System.Windows.Forms.CheckBox();
this.lblPassword = new Label();
this.rbCredentials = new System.Windows.Forms.RadioButton();
this.cmbUserName = new System.Windows.Forms.ComboBox();
this.lblUserName = new Label();
this.txtPassword = new System.Windows.Forms.TextBox();
this.tbcBack = new TabControl();
this.tpBasic = new TabPage();
this.tlpBasic = new TableLayoutPanel();
this.lblServer = new Label();
this.cmbServer = new System.Windows.Forms.ComboBox();
this.tlpNote = new TableLayoutPanel();
this.lblNote = new Label();
this.imgNote = new PictureBox();
this.tpContext = new TabPage();
this.FtpOptions = new FtpOptionControl();
this.tlpBack = new TableLayoutPanel();
this.btnOk = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.Validator = new ValidatorProvider();
this.tlpButtons = new TableLayoutPanel();
this.bvlButtons = new Bevel();
System.Windows.Forms.GroupBox box = new System.Windows.Forms.GroupBox();
TableLayoutPanel panel = new TableLayoutPanel();
box.SuspendLayout();
panel.SuspendLayout();
this.tbcBack.SuspendLayout();
this.tpBasic.SuspendLayout();
this.tlpBasic.SuspendLayout();
this.tlpNote.SuspendLayout();
((ISupportInitialize) this.imgNote).BeginInit();
this.tpContext.SuspendLayout();
this.tlpBack.SuspendLayout();
this.tlpButtons.SuspendLayout();
base.SuspendLayout();
manager.ApplyResources(box, "grpLogin");
box.Controls.Add(panel);
box.Name = "grpLogin";
box.TabStop = false;
manager.ApplyResources(panel, "tlpCredentials");
panel.Controls.Add(this.rbAnonymous, 0, 0);
panel.Controls.Add(this.chkShowPassword, 2, 4);
panel.Controls.Add(this.lblPassword, 1, 3);
panel.Controls.Add(this.rbCredentials, 0, 1);
panel.Controls.Add(this.cmbUserName, 2, 2);
panel.Controls.Add(this.lblUserName, 1, 2);
panel.Controls.Add(this.txtPassword, 2, 3);
panel.Name = "tlpCredentials";
manager.ApplyResources(this.rbAnonymous, "rbAnonymous");
this.rbAnonymous.Checked = true;
panel.SetColumnSpan(this.rbAnonymous, 3);
this.rbAnonymous.Name = "rbAnonymous";
this.rbAnonymous.TabStop = true;
this.rbAnonymous.UseVisualStyleBackColor = true;
this.rbAnonymous.CheckedChanged += new EventHandler(this.rbAnonymous_CheckedChanged);
manager.ApplyResources(this.chkShowPassword, "chkShowPassword");
this.chkShowPassword.Checked = Settings.Default.RunAsShowPassword;
this.chkShowPassword.DataBindings.Add(new Binding("Checked", Settings.Default, "RunAsShowPassword", true, DataSourceUpdateMode.OnPropertyChanged));
this.chkShowPassword.Name = "chkShowPassword";
this.chkShowPassword.UseVisualStyleBackColor = true;
this.chkShowPassword.CheckedChanged += new EventHandler(this.chkShowPassword_CheckedChanged);
manager.ApplyResources(this.lblPassword, "lblPassword");
this.lblPassword.MinimumSize = new Size(80, 0);
this.lblPassword.Name = "lblPassword";
manager.ApplyResources(this.rbCredentials, "rbCredentials");
panel.SetColumnSpan(this.rbCredentials, 3);
this.rbCredentials.Name = "rbCredentials";
this.rbCredentials.UseVisualStyleBackColor = true;
this.rbCredentials.CheckedChanged += new EventHandler(this.rbAnonymous_CheckedChanged);
manager.ApplyResources(this.cmbUserName, "cmbUserName");
this.cmbUserName.FormattingEnabled = true;
this.cmbUserName.Name = "cmbUserName";
this.Validator.SetValidateOn(this.cmbUserName, ValidateOn.TextChanged);
this.cmbUserName.Validating += new CancelEventHandler(this.cmbUserName_Validating);
manager.ApplyResources(this.lblUserName, "lblUserName");
this.lblUserName.MinimumSize = new Size(80, 0);
this.lblUserName.Name = "lblUserName";
manager.ApplyResources(this.txtPassword, "txtPassword");
this.txtPassword.Name = "txtPassword";
this.txtPassword.UseSystemPasswordChar = true;
this.tbcBack.Controls.Add(this.tpBasic);
this.tbcBack.Controls.Add(this.tpContext);
manager.ApplyResources(this.tbcBack, "tbcBack");
this.tbcBack.Name = "tbcBack";
this.tbcBack.SelectedIndex = 0;
this.tpBasic.Controls.Add(this.tlpBasic);
manager.ApplyResources(this.tpBasic, "tpBasic");
this.tpBasic.Name = "tpBasic";
this.tpBasic.UseVisualStyleBackColor = true;
manager.ApplyResources(this.tlpBasic, "tlpBasic");
this.tlpBasic.Controls.Add(this.lblServer, 0, 0);
this.tlpBasic.Controls.Add(box, 0, 2);
this.tlpBasic.Controls.Add(this.cmbServer, 0, 1);
this.tlpBasic.Controls.Add(this.tlpNote, 0, 3);
this.tlpBasic.GrowStyle = TableLayoutPanelGrowStyle.FixedSize;
this.tlpBasic.Name = "tlpBasic";
//.........这里部分代码省略.........
示例15: SuspendLayout
//.........这里部分代码省略.........
lbl_Fechat = new System.Windows.Forms.Label();
combo_Almacent = new System.Windows.Forms.ComboBox();
lbl_PrecioVentat = new System.Windows.Forms.Label();
comboBox_ProductoTerminado = new System.Windows.Forms.ComboBox();
lbl_PrecioComprat = new System.Windows.Forms.Label();
txt_Lotet = new System.Windows.Forms.TextBox();
lbl_Existenciat = new System.Windows.Forms.Label();
txt_Existenciat = new System.Windows.Forms.TextBox();
lbl_Lotet = new System.Windows.Forms.Label();
txt_PrecioComprat = new System.Windows.Forms.TextBox();
lbl_Producto = new System.Windows.Forms.Label();
txt_PrecioVentat = new System.Windows.Forms.TextBox();
dateTime_ProductoTerminado = new System.Windows.Forms.DateTimePicker();
menuStrip1 = new System.Windows.Forms.MenuStrip();
archivoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
nuevoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
abrirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
guardarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
salirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
editarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
modificarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
eliminarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
controlDeProductosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
nivelMaxMinToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
ordenDePeladoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
ayudaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
acercadeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
pic_Proveedor = new System.Windows.Forms.PictureBox();
errorProvider1 = new System.Windows.Forms.ErrorProvider(components);
tabControl1.SuspendLayout();
tab_MateriaPrima.SuspendLayout();
groupBox_ListaMateriaPrimam.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(data_MateriaPrima)).BeginInit();
groupBox_MateriaPrimam.SuspendLayout();
tab_MateriaPrimaP.SuspendLayout();
groupBox_ListaMateriaPrimap.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(data_MateriaPrimaP)).BeginInit();
groupBox_MateriaPrimap.SuspendLayout();
tab_ProductoElaborado.SuspendLayout();
groupBox_ListaProductoElaborado.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(data_ProductoElaborado)).BeginInit();
groupBox_ProductoElaborado.SuspendLayout();
tab_ProductoIndirecto.SuspendLayout();
groupBox_ListaProductoIndirecto.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(data_ProductoIndirecto)).BeginInit();
groupBox_ProductoIndirecto.SuspendLayout();
tab_ProductoTerminado.SuspendLayout();
groupBox_ListaProductoTerminado.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(data_ProductoTerminado)).BeginInit();
groupBox_ProductoTerminado.SuspendLayout();
menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(pic_Proveedor)).BeginInit();
((System.ComponentModel.ISupportInitialize)(errorProvider1)).BeginInit();
SuspendLayout();
//
// tabControl1
//
tabControl1.Controls.Add(tab_MateriaPrima);
tabControl1.Controls.Add(tab_MateriaPrimaP);
tabControl1.Controls.Add(tab_ProductoElaborado);
tabControl1.Controls.Add(tab_ProductoIndirecto);
tabControl1.Controls.Add(tab_ProductoTerminado);