BrrrBayBay.PwmLogic.MainForm.InitializeComponent C# (CSharp) Метод

InitializeComponent() приватный Метод

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
Результат void
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
			this.statusStrip1 = new System.Windows.Forms.StatusStrip();
			this.connectionStateLabel = new System.Windows.Forms.ToolStripStatusLabel();
			this.runStateLabel = new System.Windows.Forms.ToolStripStatusLabel();
			this.jitterLabel = new System.Windows.Forms.ToolStripStatusLabel();
			this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
			this.mainControlPanel = new System.Windows.Forms.Panel();
			this.mainMenuStrip = new System.Windows.Forms.MenuStrip();
			this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.controlToolstrip = new System.Windows.Forms.ToolStrip();
			this.startPwmButton = new System.Windows.Forms.ToolStripButton();
			this.stopPwmButton = new System.Windows.Forms.ToolStripButton();
			this.clearSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.statusStrip1.SuspendLayout();
			this.toolStripContainer1.ContentPanel.SuspendLayout();
			this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
			this.toolStripContainer1.SuspendLayout();
			this.mainMenuStrip.SuspendLayout();
			this.controlToolstrip.SuspendLayout();
			this.SuspendLayout();
			// 
			// statusStrip1
			// 
			this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.connectionStateLabel,
            this.runStateLabel,
            this.jitterLabel});
			this.statusStrip1.Location = new System.Drawing.Point(0, 349);
			this.statusStrip1.Name = "statusStrip1";
			this.statusStrip1.Size = new System.Drawing.Size(576, 22);
			this.statusStrip1.SizingGrip = false;
			this.statusStrip1.TabIndex = 1;
			this.statusStrip1.Text = "statusStrip1";
			// 
			// connectionStateLabel
			// 
			this.connectionStateLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.connectionStateLabel.Name = "connectionStateLabel";
			this.connectionStateLabel.Size = new System.Drawing.Size(150, 17);
			this.connectionStateLabel.Text = "Connection state unknown";
			// 
			// runStateLabel
			// 
			this.runStateLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.runStateLabel.Name = "runStateLabel";
			this.runStateLabel.Size = new System.Drawing.Size(271, 17);
			this.runStateLabel.Spring = true;
			this.runStateLabel.Text = "RunState";
			// 
			// jitterLabel
			// 
			this.jitterLabel.AutoSize = false;
			this.jitterLabel.Name = "jitterLabel";
			this.jitterLabel.Size = new System.Drawing.Size(140, 17);
			this.jitterLabel.Text = "Buffer underruns: ------";
			this.jitterLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// toolStripContainer1
			// 
			// 
			// toolStripContainer1.ContentPanel
			// 
			this.toolStripContainer1.ContentPanel.Controls.Add(this.mainControlPanel);
			this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(576, 300);
			this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
			this.toolStripContainer1.Name = "toolStripContainer1";
			this.toolStripContainer1.Size = new System.Drawing.Size(576, 349);
			this.toolStripContainer1.TabIndex = 2;
			this.toolStripContainer1.Text = "toolStripContainer1";
			// 
			// toolStripContainer1.TopToolStripPanel
			// 
			this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.mainMenuStrip);
			this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.controlToolstrip);
			// 
			// mainControlPanel
			// 
			this.mainControlPanel.Dock = System.Windows.Forms.DockStyle.Fill;
			this.mainControlPanel.Location = new System.Drawing.Point(0, 0);
			this.mainControlPanel.Name = "mainControlPanel";
			this.mainControlPanel.Size = new System.Drawing.Size(576, 300);
			this.mainControlPanel.TabIndex = 0;
			// 
			// mainMenuStrip
			// 
			this.mainMenuStrip.Dock = System.Windows.Forms.DockStyle.None;
			this.mainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.toolsToolStripMenuItem,
            this.helpToolStripMenuItem});
			this.mainMenuStrip.Location = new System.Drawing.Point(0, 0);
			this.mainMenuStrip.Name = "mainMenuStrip";
			this.mainMenuStrip.Size = new System.Drawing.Size(576, 24);
			this.mainMenuStrip.TabIndex = 0;
			this.mainMenuStrip.Text = "menuStrip1";
			// 
			// fileToolStripMenuItem
			// 
			this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem,
            this.loadToolStripMenuItem,
            this.saveToolStripMenuItem,
            this.toolStripSeparator1,
            this.exitToolStripMenuItem});
			this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
			this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
			this.fileToolStripMenuItem.Text = "&File";
			// 
			// newToolStripMenuItem
			// 
			this.newToolStripMenuItem.Name = "newToolStripMenuItem";
			this.newToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
			this.newToolStripMenuItem.Text = "&New";
			this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
			// 
			// loadToolStripMenuItem
			// 
			this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
			this.loadToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
			this.loadToolStripMenuItem.Text = "&Open";
			this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
			// 
			// saveToolStripMenuItem
			// 
			this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
			this.saveToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
			this.saveToolStripMenuItem.Text = "&Save";
			this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(100, 6);
			// 
			// exitToolStripMenuItem
			// 
			this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
			this.exitToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
			this.exitToolStripMenuItem.Text = "E&xit";
			this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
			// 
			// toolsToolStripMenuItem
			// 
			this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.optionsToolStripMenuItem,
            this.clearSettingsToolStripMenuItem});
			this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
			this.toolsToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
			this.toolsToolStripMenuItem.Text = "&Tools";
			// 
			// optionsToolStripMenuItem
			// 
			this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
			this.optionsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
			this.optionsToolStripMenuItem.Text = "&Options";
			this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
			// 
			// helpToolStripMenuItem
			// 
			this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.aboutToolStripMenuItem});
			this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
			this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
			this.helpToolStripMenuItem.Text = "&Help";
			// 
			// aboutToolStripMenuItem
			// 
			this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
			this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
			this.aboutToolStripMenuItem.Text = "&About";
			this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
			// 
			// controlToolstrip
			// 
			this.controlToolstrip.Dock = System.Windows.Forms.DockStyle.None;
			this.controlToolstrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
			this.controlToolstrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.startPwmButton,
            this.stopPwmButton});
			this.controlToolstrip.Location = new System.Drawing.Point(3, 24);
			this.controlToolstrip.Name = "controlToolstrip";
			this.controlToolstrip.Size = new System.Drawing.Size(73, 25);
			this.controlToolstrip.TabIndex = 1;
			// 
			// startPwmButton
			// 
			this.startPwmButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.startPwmButton.Image = ((System.Drawing.Image)(resources.GetObject("startPwmButton.Image")));
			this.startPwmButton.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.startPwmButton.Name = "startPwmButton";
			this.startPwmButton.Size = new System.Drawing.Size(35, 22);
			this.startPwmButton.Text = "Start";
			this.startPwmButton.Click += new System.EventHandler(this.startPwmButton_Click);
			// 
			// stopPwmButton
			// 
			this.stopPwmButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.stopPwmButton.Image = ((System.Drawing.Image)(resources.GetObject("stopPwmButton.Image")));
			this.stopPwmButton.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.stopPwmButton.Name = "stopPwmButton";
			this.stopPwmButton.Size = new System.Drawing.Size(35, 22);
			this.stopPwmButton.Text = "Stop";
			this.stopPwmButton.Click += new System.EventHandler(this.stopPwmButton_Click);
			// 
			// clearSettingsToolStripMenuItem
			// 
			this.clearSettingsToolStripMenuItem.Name = "clearSettingsToolStripMenuItem";
			this.clearSettingsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
			this.clearSettingsToolStripMenuItem.Text = "&Clear settings";
			this.clearSettingsToolStripMenuItem.Click += new System.EventHandler(this.clearSettingsToolStripMenuItem_Click);
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(576, 371);
			this.Controls.Add(this.toolStripContainer1);
			this.Controls.Add(this.statusStrip1);
			this.DoubleBuffered = true;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MainMenuStrip = this.mainMenuStrip;
			this.MaximizeBox = false;
			this.Name = "MainForm";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "PWMLogic";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
			this.Load += new System.EventHandler(this.Form1_Load);
			this.statusStrip1.ResumeLayout(false);
			this.statusStrip1.PerformLayout();
			this.toolStripContainer1.ContentPanel.ResumeLayout(false);
			this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
			this.toolStripContainer1.TopToolStripPanel.PerformLayout();
			this.toolStripContainer1.ResumeLayout(false);
			this.toolStripContainer1.PerformLayout();
			this.mainMenuStrip.ResumeLayout(false);
			this.mainMenuStrip.PerformLayout();
			this.controlToolstrip.ResumeLayout(false);
			this.controlToolstrip.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}