Click here to Skip to main content
15,893,588 members
Articles / Programming Languages / C#

Mars Mission (2) : Explore the Solar System

Rate me:
Please Sign up or sign in to vote.
4.97/5 (36 votes)
20 Nov 2010CPOL19 min read 50.6K   2.2K   45  
strategy/action game defending the solar system : interplanetary space
namespace Mars_Mission
{
	partial class formReport
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose(bool disposing)
		{
			if (disposing && (components != null))
			{
				components.Dispose();
			}
			base.Dispose(disposing);
		}

		#region Windows Form Designer generated code

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.lbtnOk = new CK_Controls.lblButton();
			this.lbtnNext = new CK_Controls.lblButton();
			this.SuspendLayout();
			// 
			// lbtnOk
			// 
			this.lbtnOk.AutoSize = true;
			this.lbtnOk.BackgroundDull = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
			this.lbtnOk.BackgroundHighlight = System.Drawing.Color.Yellow;
			this.lbtnOk.ClickTogglesFlag = true;
			this.lbtnOk.Flag = false;
			this.lbtnOk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
			this.lbtnOk.HighLightWhenFlagSet = true;
			this.lbtnOk.Location = new System.Drawing.Point(543, 280);
			this.lbtnOk.Name = "lbtnOk";
			this.lbtnOk.Size = new System.Drawing.Size(21, 13);
			this.lbtnOk.TabIndex = 0;
			this.lbtnOk.Text = "Ok";
			// 
			// lbtnNext
			// 
			this.lbtnNext.AutoSize = true;
			this.lbtnNext.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
			this.lbtnNext.BackgroundDull = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
			this.lbtnNext.BackgroundHighlight = System.Drawing.Color.Yellow;
			this.lbtnNext.ClickTogglesFlag = true;
			this.lbtnNext.Flag = false;
			this.lbtnNext.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
			this.lbtnNext.HighLightWhenFlagSet = true;
			this.lbtnNext.Location = new System.Drawing.Point(509, 280);
			this.lbtnNext.Name = "lbtnNext";
			this.lbtnNext.Size = new System.Drawing.Size(29, 13);
			this.lbtnNext.TabIndex = 1;
			this.lbtnNext.Text = "Next";
			// 
			// formReport
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackgroundImage = global::Mars_Mission.Properties.Resources.frame;
			this.ClientSize = new System.Drawing.Size(601, 298);
			this.Controls.Add(this.lbtnNext);
			this.Controls.Add(this.lbtnOk);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
			this.Name = "formReport";
			this.Text = "formReport";
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private CK_Controls.lblButton lbtnOk;
		private CK_Controls.lblButton lbtnNext;
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO unemployable
Canada Canada
Christ Kennedy grew up in the suburbs of Montreal and is a bilingual Quebecois with a bachelor’s degree in computer engineering from McGill University. He is unemployable and currently living in Moncton, N.B. writing his next novel.

Comments and Discussions