Balloon.NET.BalloonHelp.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
return void
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.windowsHook = new Balloon.NET.Hooks.WindowsHook(this.components);
			this.closeButton = new System.Windows.Forms.Button();
			this.nextButton = new System.Windows.Forms.Button();
			this.previousButton = new System.Windows.Forms.Button();
			this.SuspendLayout();
			// 
			// windowsHook
			// 
			this.windowsHook.ThreadID = 0;
			// 
			// closeButton
			// 
			this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.closeButton.FlatAppearance.BorderColor = System.Drawing.Color.LightYellow;
			this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.closeButton.Image = global::Nexus.Client.Properties.Resources.tipsClose;
			this.closeButton.Location = new System.Drawing.Point(198, 0);
			this.closeButton.Name = "closeButton";
			this.closeButton.Size = new System.Drawing.Size(20, 20);
			this.closeButton.TabIndex = 0;
			this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
			// 
			// nextButton
			// 
			this.nextButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.nextButton.FlatAppearance.BorderColor = System.Drawing.Color.LightYellow;
			this.nextButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.nextButton.Image = global::Nexus.Client.Properties.Resources.arrow_state_blue_right;
			this.nextButton.Location = new System.Drawing.Point(182, 2);
			this.nextButton.Name = "nextButton";
			this.nextButton.Size = new System.Drawing.Size(16, 16);
			this.nextButton.TabIndex = 0;
			this.nextButton.Click += new System.EventHandler(this.nextButton_Click);
			// 
			// previousButton
			// 
			this.previousButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.previousButton.FlatAppearance.BorderColor = System.Drawing.Color.LightYellow;
			this.previousButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.previousButton.Image = global::Nexus.Client.Properties.Resources.arrow_state_blue_left;
			this.previousButton.Location = new System.Drawing.Point(164, 2);
			this.previousButton.Name = "previousButton";
			this.previousButton.Size = new System.Drawing.Size(16, 16);
			this.previousButton.TabIndex = 0;
			this.previousButton.Click += new System.EventHandler(this.previousButton_Click);
			// 
			// BalloonHelp
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.BackColor = System.Drawing.Color.LightYellow;
			this.ClientSize = new System.Drawing.Size(224, 190);
			this.Controls.Add(this.closeButton);
			this.Controls.Add(this.previousButton);
			this.Controls.Add(this.nextButton);
			this.Name = "BalloonHelp";
			this.ResumeLayout(false);

		}
		#endregion