本文整理汇总了C#中System.Windows.Forms.TableLayoutPanel.SetRowSpan方法的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.TableLayoutPanel.SetRowSpan方法的具体用法?C# System.Windows.Forms.TableLayoutPanel.SetRowSpan怎么用?C# System.Windows.Forms.TableLayoutPanel.SetRowSpan使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.TableLayoutPanel
的用法示例。
在下文中一共展示了System.Windows.Forms.TableLayoutPanel.SetRowSpan方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeComponent
//.........这里部分代码省略.........
labelMaxQuestCount.Text = "MaxQuestCount";
//
// MaxQuestCount
//
tableLayoutPanel5.SetColumnSpan(this.MaxQuestCount, 2);
this.MaxQuestCount.Dock = System.Windows.Forms.DockStyle.Fill;
this.MaxQuestCount.Location = new System.Drawing.Point(433, 86);
this.MaxQuestCount.Maximum = new decimal(new int[] {
2147483647,
0,
0,
0});
this.MaxQuestCount.Name = "MaxQuestCount";
this.MaxQuestCount.Size = new System.Drawing.Size(170, 20);
this.MaxQuestCount.TabIndex = 18;
//
// labelNotes
//
labelNotes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
labelNotes.AutoSize = true;
labelNotes.Location = new System.Drawing.Point(321, 122);
labelNotes.Name = "labelNotes";
labelNotes.Size = new System.Drawing.Size(103, 13);
labelNotes.TabIndex = 19;
labelNotes.Text = "Notes: (TODO\'s etc)";
//
// Notes
//
tableLayoutPanel5.SetColumnSpan(this.Notes, 3);
this.Notes.Dock = System.Windows.Forms.DockStyle.Fill;
this.Notes.Location = new System.Drawing.Point(321, 138);
this.Notes.Multiline = true;
this.Notes.Name = "Notes";
tableLayoutPanel5.SetRowSpan(this.Notes, 2);
this.Notes.Size = new System.Drawing.Size(282, 45);
this.Notes.TabIndex = 20;
//
// labelClasses
//
this.labelClasses.AutoSize = true;
this.labelClasses.Location = new System.Drawing.Point(3, 189);
this.labelClasses.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
this.labelClasses.Name = "labelClasses";
this.labelClasses.Size = new System.Drawing.Size(83, 13);
this.labelClasses.TabIndex = 25;
this.labelClasses.Text = "Allowed Classes";
//
// listBoxAllowed
//
this.listBoxAllowed.Dock = System.Windows.Forms.DockStyle.Fill;
this.listBoxAllowed.FormattingEnabled = true;
this.listBoxAllowed.Location = new System.Drawing.Point(115, 189);
this.listBoxAllowed.Name = "listBoxAllowed";
this.listBoxAllowed.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.listBoxAllowed.Size = new System.Drawing.Size(170, 69);
this.listBoxAllowed.TabIndex = 26;
//
// listBoxAvailable
//
tableLayoutPanel5.SetColumnSpan(this.listBoxAvailable, 3);
this.listBoxAvailable.Dock = System.Windows.Forms.DockStyle.Fill;
this.listBoxAvailable.FormattingEnabled = true;
this.listBoxAvailable.Location = new System.Drawing.Point(321, 189);
this.listBoxAvailable.Name = "listBoxAvailable";
this.listBoxAvailable.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.listBoxAvailable.Size = new System.Drawing.Size(282, 69);
示例2: InitializeComponent
//.........这里部分代码省略.........
labelOutputFile.Dock = System.Windows.Forms.DockStyle.Fill;
labelOutputFile.Location = new System.Drawing.Point(3, 29);
labelOutputFile.Name = "labelOutputFile";
labelOutputFile.Size = new System.Drawing.Size(63, 30);
labelOutputFile.TabIndex = 0;
labelOutputFile.Text = "Output file:";
labelOutputFile.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// textBoxOut
//
this.textBoxOut.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.textBoxOut.Location = new System.Drawing.Point(72, 34);
this.textBoxOut.Name = "textBoxOut";
this.textBoxOut.Size = new System.Drawing.Size(835, 20);
this.textBoxOut.TabIndex = 3;
//
// buttonBrowseOut
//
buttonBrowseOut.Dock = System.Windows.Forms.DockStyle.Fill;
buttonBrowseOut.Location = new System.Drawing.Point(913, 32);
buttonBrowseOut.Name = "buttonBrowseOut";
buttonBrowseOut.Size = new System.Drawing.Size(62, 24);
buttonBrowseOut.TabIndex = 4;
buttonBrowseOut.Text = "Browse";
buttonBrowseOut.UseVisualStyleBackColor = true;
buttonBrowseOut.Click += new System.EventHandler(this.buttonBrowseOut_Click);
//
// buttonGo
//
this.buttonGo.Dock = System.Windows.Forms.DockStyle.Fill;
this.buttonGo.Enabled = false;
this.buttonGo.Location = new System.Drawing.Point(981, 3);
this.buttonGo.Name = "buttonGo";
tableMain.SetRowSpan(this.buttonGo, 2);
this.buttonGo.Size = new System.Drawing.Size(71, 53);
this.buttonGo.TabIndex = 5;
this.buttonGo.Text = "Convert";
this.buttonGo.UseVisualStyleBackColor = true;
this.buttonGo.Click += new System.EventHandler(this.buttonGo_Click);
//
// tabControlOptions
//
tabControlOptions.Controls.Add(tabProcessing);
tabControlOptions.Controls.Add(tabEncoding);
tabControlOptions.Controls.Add(tabAdvanced);
tabControlOptions.Dock = System.Windows.Forms.DockStyle.Fill;
tabControlOptions.Location = new System.Drawing.Point(3, 87);
tabControlOptions.Name = "tabControlOptions";
tabControlOptions.SelectedIndex = 0;
tabControlOptions.Size = new System.Drawing.Size(1061, 333);
tabControlOptions.TabIndex = 1;
//
// tabProcessing
//
tabProcessing.Controls.Add(tableProcessing);
tabProcessing.Location = new System.Drawing.Point(4, 22);
tabProcessing.Name = "tabProcessing";
tabProcessing.Padding = new System.Windows.Forms.Padding(3);
tabProcessing.Size = new System.Drawing.Size(1053, 307);
tabProcessing.TabIndex = 3;
tabProcessing.Text = "Processing";
//
// tableProcessing
//
tableProcessing.ColumnCount = 1;
tableProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
示例3: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.TableLayoutPanel outerLayout;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IndexesEdit));
System.Windows.Forms.TableLayoutPanel innerLayoutPanel;
System.Windows.Forms.Label indexNameLabel;
System.Windows.Forms.Label indexKindLabel;
System.Windows.Forms.Label indexTypeLabel;
System.Windows.Forms.ImageList imageList;
this.indexSettingsGroup = new System.Windows.Forms.GroupBox();
this.indexNameText = new MySql.Data.VisualStudio.DocumentView.NameTextBox();
this.indexKindSelect = new System.Windows.Forms.ComboBox();
this.indexTypeSelect = new System.Windows.Forms.ComboBox();
this.indexColumns = new MySql.Data.VisualStudio.DocumentView.AdvancedDataGridView();
this.sourceColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
this.columnLengthColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.indexNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.positionInIndexColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.removeButton = new System.Windows.Forms.Button();
this.addButton = new System.Windows.Forms.Button();
this.indexesList = new System.Windows.Forms.ListBox();
outerLayout = new System.Windows.Forms.TableLayoutPanel();
innerLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
indexNameLabel = new System.Windows.Forms.Label();
indexKindLabel = new System.Windows.Forms.Label();
indexTypeLabel = new System.Windows.Forms.Label();
imageList = new System.Windows.Forms.ImageList(this.components);
outerLayout.SuspendLayout();
this.indexSettingsGroup.SuspendLayout();
innerLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.indexColumns)).BeginInit();
this.SuspendLayout();
//
// outerLayout
//
resources.ApplyResources(outerLayout, "outerLayout");
outerLayout.Controls.Add(this.indexSettingsGroup, 2, 0);
outerLayout.Controls.Add(this.removeButton, 1, 1);
outerLayout.Controls.Add(this.addButton, 0, 1);
outerLayout.Controls.Add(this.indexesList, 0, 0);
outerLayout.Name = "outerLayout";
//
// indexSettingsGroup
//
resources.ApplyResources(this.indexSettingsGroup, "indexSettingsGroup");
this.indexSettingsGroup.Controls.Add(innerLayoutPanel);
this.indexSettingsGroup.Name = "indexSettingsGroup";
outerLayout.SetRowSpan(this.indexSettingsGroup, 2);
this.indexSettingsGroup.TabStop = false;
//
// innerLayoutPanel
//
resources.ApplyResources(innerLayoutPanel, "innerLayoutPanel");
innerLayoutPanel.Controls.Add(indexNameLabel, 0, 0);
innerLayoutPanel.Controls.Add(indexKindLabel, 0, 1);
innerLayoutPanel.Controls.Add(indexTypeLabel, 0, 2);
innerLayoutPanel.Controls.Add(this.indexNameText, 1, 0);
innerLayoutPanel.Controls.Add(this.indexKindSelect, 1, 1);
innerLayoutPanel.Controls.Add(this.indexTypeSelect, 1, 2);
innerLayoutPanel.Controls.Add(this.indexColumns, 2, 0);
innerLayoutPanel.Name = "innerLayoutPanel";
//
// indexNameLabel
//
resources.ApplyResources(indexNameLabel, "indexNameLabel");
indexNameLabel.Name = "indexNameLabel";
//
// indexKindLabel
//
resources.ApplyResources(indexKindLabel, "indexKindLabel");
indexKindLabel.Name = "indexKindLabel";
//
// indexTypeLabel
//
resources.ApplyResources(indexTypeLabel, "indexTypeLabel");
indexTypeLabel.Name = "indexTypeLabel";
//
// indexNameText
//
this.indexNameText.AttributeName = null;
this.indexNameText.DataSource = null;
resources.ApplyResources(this.indexNameText, "indexNameText");
this.indexNameText.Name = "indexNameText";
this.indexNameText.NameChanging += new System.EventHandler(this.OnIndexNameChanging);
this.indexNameText.NameChanged += new System.EventHandler(this.OnIndexNameChanged);
//
// indexKindSelect
//
this.indexKindSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.indexKindSelect.FormattingEnabled = true;
resources.ApplyResources(this.indexKindSelect, "indexKindSelect");
this.indexKindSelect.Name = "indexKindSelect";
this.indexKindSelect.SelectedIndexChanged += new System.EventHandler(this.OnKindOrTypeChanged);
//
// indexTypeSelect
//.........这里部分代码省略.........
示例4: InitializeComponent
//.........这里部分代码省略.........
gbExternalReports.Name = "gbExternalReports";
gbExternalReports.TabStop = false;
this.toolTipMain.SetToolTip(gbExternalReports, resources.GetString("gbExternalReports.ToolTip"));
//
// tlpExternalReports
//
resources.ApplyResources(tlpExternalReports, "tlpExternalReports");
tlpExternalReports.Controls.Add(this.btnOpenExternalReports, 1, 1);
tlpExternalReports.Controls.Add(this.lblExternalReports, 0, 0);
tlpExternalReports.Name = "tlpExternalReports";
this.toolTipMain.SetToolTip(tlpExternalReports, resources.GetString("tlpExternalReports.ToolTip"));
//
// btnOpenExternalReports
//
resources.ApplyResources(this.btnOpenExternalReports, "btnOpenExternalReports");
this.btnOpenExternalReports.Image = global::easyMoney.Manager.Properties.Resources.chart_curve;
this.btnOpenExternalReports.Name = "btnOpenExternalReports";
this.toolTipMain.SetToolTip(this.btnOpenExternalReports, resources.GetString("btnOpenExternalReports.ToolTip"));
this.btnOpenExternalReports.UseVisualStyleBackColor = true;
//
// lblExternalReports
//
resources.ApplyResources(this.lblExternalReports, "lblExternalReports");
this.lblExternalReports.AutoEllipsis = true;
tlpExternalReports.SetColumnSpan(this.lblExternalReports, 3);
this.lblExternalReports.Name = "lblExternalReports";
this.toolTipMain.SetToolTip(this.lblExternalReports, resources.GetString("lblExternalReports.ToolTip"));
//
// gbReportParemeters
//
resources.ApplyResources(gbReportParemeters, "gbReportParemeters");
gbReportParemeters.Controls.Add(this.tlpReportParameters);
gbReportParemeters.Name = "gbReportParemeters";
tlpReports.SetRowSpan(gbReportParemeters, 2);
gbReportParemeters.TabStop = false;
this.toolTipMain.SetToolTip(gbReportParemeters, resources.GetString("gbReportParemeters.ToolTip"));
//
// tlpReportParameters
//
resources.ApplyResources(this.tlpReportParameters, "tlpReportParameters");
this.tlpReportParameters.Controls.Add(this.btnRunReport, 1, 1);
this.tlpReportParameters.Controls.Add(this.panelReportParameters, 0, 0);
this.tlpReportParameters.Name = "tlpReportParameters";
this.toolTipMain.SetToolTip(this.tlpReportParameters, resources.GetString("tlpReportParameters.ToolTip"));
//
// btnRunReport
//
resources.ApplyResources(this.btnRunReport, "btnRunReport");
this.btnRunReport.Image = global::easyMoney.Manager.Properties.Resources.chart_pie;
this.btnRunReport.Name = "btnRunReport";
this.toolTipMain.SetToolTip(this.btnRunReport, resources.GetString("btnRunReport.ToolTip"));
this.btnRunReport.UseVisualStyleBackColor = true;
this.btnRunReport.Click += new System.EventHandler(this.btnRunReport_Click);
//
// panelReportParameters
//
resources.ApplyResources(this.panelReportParameters, "panelReportParameters");
this.tlpReportParameters.SetColumnSpan(this.panelReportParameters, 3);
this.panelReportParameters.Name = "panelReportParameters";
this.toolTipMain.SetToolTip(this.panelReportParameters, resources.GetString("panelReportParameters.ToolTip"));
//
// tlpAccounts
//
resources.ApplyResources(tlpAccounts, "tlpAccounts");
tlpAccounts.Controls.Add(gbAccountList, 0, 0);
tlpAccounts.Controls.Add(this.gbAccountDetails, 2, 0);
示例5: InitializeComponent
//.........这里部分代码省略.........
this.supportGroup.Controls.Add(this.support1);
this.supportGroup.Controls.Add(this.support2);
this.supportGroup.Controls.Add(this.support3);
this.supportGroup.Controls.Add(this.support4);
this.supportGroup.Dock = System.Windows.Forms.DockStyle.Fill;
this.supportGroup.Location = new System.Drawing.Point(201, 104);
this.supportGroup.Name = "supportGroup";
this.supportGroup.Size = new System.Drawing.Size(193, 121);
this.supportGroup.TabIndex = 4;
this.supportGroup.TabStop = false;
this.supportGroup.Text = "Support";
//
// actionGroup
//
this.actionGroup.Controls.Add(this.action1);
this.actionGroup.Controls.Add(this.action2);
this.actionGroup.Controls.Add(this.action3);
this.actionGroup.Controls.Add(this.action4);
this.actionGroup.Controls.Add(this.action5);
this.actionGroup.Controls.Add(this.action6);
this.actionGroup.Controls.Add(this.action7);
this.actionGroup.Controls.Add(this.action8);
this.actionGroup.Controls.Add(this.action9);
this.actionGroup.Controls.Add(this.action10);
this.actionGroup.Controls.Add(this.action11);
this.actionGroup.Controls.Add(this.action12);
this.actionGroup.Controls.Add(this.action13);
this.actionGroup.Controls.Add(this.action14);
this.actionGroup.Controls.Add(this.action15);
this.actionGroup.Controls.Add(this.action16);
this.actionGroup.Dock = System.Windows.Forms.DockStyle.Fill;
this.actionGroup.Location = new System.Drawing.Point(3, 3);
this.actionGroup.Name = "actionGroup";
jobEditorTable.SetRowSpan(this.actionGroup, 4);
this.actionGroup.Size = new System.Drawing.Size(192, 426);
this.actionGroup.TabIndex = 1;
this.actionGroup.TabStop = false;
this.actionGroup.Text = "Action";
//
// reactionGroup
//
this.reactionGroup.Controls.Add(this.reaction1);
this.reactionGroup.Controls.Add(this.reaction2);
this.reactionGroup.Controls.Add(this.reaction3);
this.reactionGroup.Dock = System.Windows.Forms.DockStyle.Fill;
this.reactionGroup.Location = new System.Drawing.Point(201, 3);
this.reactionGroup.Name = "reactionGroup";
this.reactionGroup.Size = new System.Drawing.Size(193, 95);
this.reactionGroup.TabIndex = 2;
this.reactionGroup.TabStop = false;
this.reactionGroup.Text = "Reaction";
//
// infoPanel
//
this.infoPanel.Controls.Add(this.levelLabel);
this.infoPanel.Controls.Add(this.masteredCheckbox);
this.infoPanel.Controls.Add(this.totalSpinner);
this.infoPanel.Controls.Add(totalLabel);
this.infoPanel.Controls.Add(this.jpSpinner);
this.infoPanel.Controls.Add(jpLabel);
this.infoPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.infoPanel.Location = new System.Drawing.Point(199, 305);
this.infoPanel.Margin = new System.Windows.Forms.Padding(1);
this.infoPanel.Name = "infoPanel";
this.infoPanel.Size = new System.Drawing.Size(197, 126);
this.infoPanel.TabIndex = 8;
示例6: InitializeComponent
//.........这里部分代码省略.........
this.OtherSsh.Size = new System.Drawing.Size(425, 21);
this.OtherSsh.TabIndex = 4;
//
// OpenSSH
//
this.OpenSSH.AutoSize = true;
this.OpenSSH.Dock = System.Windows.Forms.DockStyle.Fill;
this.OpenSSH.Location = new System.Drawing.Point(3, 26);
this.OpenSSH.Name = "OpenSSH";
this.OpenSSH.Size = new System.Drawing.Size(134, 17);
this.OpenSSH.TabIndex = 2;
this.OpenSSH.Text = "OpenSSH";
this.OpenSSH.UseVisualStyleBackColor = true;
this.OpenSSH.CheckedChanged += new System.EventHandler(this.OpenSSH_CheckedChanged);
//
// Other
//
this.Other.AutoSize = true;
this.Other.Dock = System.Windows.Forms.DockStyle.Fill;
this.Other.Location = new System.Drawing.Point(3, 49);
this.Other.Name = "Other";
this.Other.Size = new System.Drawing.Size(134, 25);
this.Other.TabIndex = 3;
this.Other.Text = "Other ssh client";
this.Other.UseVisualStyleBackColor = true;
this.Other.CheckedChanged += new System.EventHandler(this.Other_CheckedChanged);
//
// label18
//
this.label18.BackColor = System.Drawing.SystemColors.Info;
this.label18.Dock = System.Windows.Forms.DockStyle.Fill;
this.label18.Location = new System.Drawing.Point(143, 0);
this.label18.Name = "label18";
tableLayoutPanel2.SetRowSpan(this.label18, 2);
this.label18.Size = new System.Drawing.Size(425, 46);
this.label18.TabIndex = 1;
this.label18.Text = resources.GetString("label18.Text");
this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// groupBox2
//
this.groupBox2.AutoSize = true;
this.groupBox2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.groupBox2.Controls.Add(tableLayoutPanel3);
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox2.Location = new System.Drawing.Point(3, 116);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Padding = new System.Windows.Forms.Padding(8);
this.groupBox2.Size = new System.Drawing.Size(668, 146);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Configure PuTTY";
//
// tableLayoutPanel3
//
tableLayoutPanel3.AutoSize = true;
tableLayoutPanel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
tableLayoutPanel3.ColumnCount = 3;
tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 140F));
tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
tableLayoutPanel3.Controls.Add(this.label15, 0, 0);
tableLayoutPanel3.Controls.Add(this.PageantBrowse, 2, 2);
tableLayoutPanel3.Controls.Add(this.AutostartPageant, 1, 3);
tableLayoutPanel3.Controls.Add(this.PuttygenBrowse, 2, 1);
tableLayoutPanel3.Controls.Add(this.label16, 0, 1);
示例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.TableLayoutPanel tableLayoutPanel1;
System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.gyroscopeUserControl1 = new BIT.PilotlessPlane.Client.Views.GyroscopeUserControl();
this.dashboardUserControl1 = new BIT.PilotlessPlane.Client.Views.DashboardUserControl();
this.dashboardUserControl2 = new BIT.PilotlessPlane.Client.Views.DashboardUserControl();
this.dashboardUserControl3 = new BIT.PilotlessPlane.Client.Views.DashboardUserControl();
this.directionDashboardUserControl1 = new BIT.PilotlessPlane.Client.Views.DirectionDashboardUserControl();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.backgroundWorker_Binding = new System.ComponentModel.BackgroundWorker();
this.timer_UpdateUI = new System.Windows.Forms.Timer(this.components);
tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
tableLayoutPanel1.SuspendLayout();
tableLayoutPanel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
tableLayoutPanel1.ColumnCount = 2;
tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F));
tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40F));
tableLayoutPanel1.Controls.Add(tableLayoutPanel2, 0, 0);
tableLayoutPanel1.Controls.Add(this.pictureBox1, 1, 0);
tableLayoutPanel1.Controls.Add(this.pictureBox2, 1, 1);
tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
tableLayoutPanel1.Location = new System.Drawing.Point(0, 24);
tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
tableLayoutPanel1.Name = "tableLayoutPanel1";
tableLayoutPanel1.RowCount = 2;
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 60F));
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 40F));
tableLayoutPanel1.Size = new System.Drawing.Size(800, 600);
tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel2
//
tableLayoutPanel2.ColumnCount = 4;
tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
tableLayoutPanel2.Controls.Add(this.gyroscopeUserControl1, 0, 0);
tableLayoutPanel2.Controls.Add(this.dashboardUserControl1, 0, 4);
tableLayoutPanel2.Controls.Add(this.dashboardUserControl2, 1, 4);
tableLayoutPanel2.Controls.Add(this.dashboardUserControl3, 2, 4);
tableLayoutPanel2.Controls.Add(this.directionDashboardUserControl1, 3, 4);
tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
tableLayoutPanel2.Name = "tableLayoutPanel2";
tableLayoutPanel2.RowCount = 5;
tableLayoutPanel1.SetRowSpan(tableLayoutPanel2, 2);
tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
tableLayoutPanel2.Size = new System.Drawing.Size(480, 600);
tableLayoutPanel2.TabIndex = 2;
//
// gyroscopeUserControl1
//
tableLayoutPanel2.SetColumnSpan(this.gyroscopeUserControl1, 4);
this.gyroscopeUserControl1.c磁航向 = 0D;
this.gyroscopeUserControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.gyroscopeUserControl1.f俯仰角 = 0D;
this.gyroscopeUserControl1.f俯仰角速率 = 0D;
this.gyroscopeUserControl1.GPS高度 = 0D;
this.gyroscopeUserControl1.g滚转角 = 0D;
this.gyroscopeUserControl1.g滚转角速率 = 0D;
this.gyroscopeUserControl1.Location = new System.Drawing.Point(0, 0);
this.gyroscopeUserControl1.Margin = new System.Windows.Forms.Padding(0);
this.gyroscopeUserControl1.Name = "gyroscopeUserControl1";
this.gyroscopeUserControl1.p偏航角速率 = 0D;
tableLayoutPanel2.SetRowSpan(this.gyroscopeUserControl1, 4);
this.gyroscopeUserControl1.Size = new System.Drawing.Size(480, 480);
this.gyroscopeUserControl1.TabIndex = 0;
//
// dashboardUserControl1
//
this.dashboardUserControl1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("dashboardUserControl1.BackgroundImage")));
this.dashboardUserControl1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.dashboardUserControl1.CurrentValue = 0D;
this.dashboardUserControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dashboardUserControl1.Location = new System.Drawing.Point(0, 480);
this.dashboardUserControl1.Margin = new System.Windows.Forms.Padding(0);
//.........这里部分代码省略.........