파일 목록
-
📁 10
-
📁 3
-
📁 4
-
📁 4-minicalc
-
📁 7
-
📁 parking manager
- 2.cs
- desktop.ini
- Title.png
- 객체지향 3대 특징(+1).txt
namespace WindowsFormsApp9
{
partial class Form1
{
/// <summary>
/// 필수 디자이너 변수입니다.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 사용 중인 모든 리소스를 정리합니다.
/// </summary>
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form 디자이너에서 생성한 코드
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.MakeBlack = new System.Windows.Forms.Button();
this.btnMakeRed = new System.Windows.Forms.Button();
this.btnUp = new System.Windows.Forms.Button();
this.btnDown = new System.Windows.Forms.Button();
this.btnLeft = new System.Windows.Forms.Button();
this.btnRight = new System.Windows.Forms.Button();
this.pnlMain = new System.Windows.Forms.Panel();
this.tmrRed = new System.Windows.Forms.Timer(this.components);
this.SuspendLayout();
//
// MakeBlack
//
this.MakeBlack.Location = new System.Drawing.Point(39, 392);
this.MakeBlack.Name = "MakeBlack";
this.MakeBlack.Size = new System.Drawing.Size(75, 23);
this.MakeBlack.TabIndex = 0;
this.MakeBlack.Text = "MakeBlack";
this.MakeBlack.UseVisualStyleBackColor = true;
this.MakeBlack.Click += new System.EventHandler(this.MakeBlack_Click);
//
// btnMakeRed
//
this.btnMakeRed.ForeColor = System.Drawing.Color.Red;
this.btnMakeRed.Location = new System.Drawing.Point(1094, 392);
this.btnMakeRed.Name = "btnMakeRed";
this.btnMakeRed.Size = new System.Drawing.Size(75, 23);
this.btnMakeRed.TabIndex = 1;
this.btnMakeRed.Text = "button1";
this.btnMakeRed.UseVisualStyleBackColor = true;
this.btnMakeRed.Click += new System.EventHandler(this.btnMakeRed_Click);
//
// btnUp
//
this.btnUp.Location = new System.Drawing.Point(556, 347);
this.btnUp.Name = "btnUp";
this.btnUp.Size = new System.Drawing.Size(75, 23);
this.btnUp.TabIndex = 2;
this.btnUp.Text = "btnUp";
this.btnUp.UseVisualStyleBackColor = true;
this.btnUp.Click += new System.EventHandler(this.btnUp_Click);
//
// btnDown
//
this.btnDown.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnDown.Location = new System.Drawing.Point(556, 427);
this.btnDown.Name = "btnDown";
this.btnDown.Size = new System.Drawing.Size(75, 23);
this.btnDown.TabIndex = 3;
this.btnDown.Text = "btnDown";
this.btnDown.UseVisualStyleBackColor = true;
this.btnDown.Click += new System.EventHandler(this.btnDown_Click);
//
// btnLeft
//
this.btnLeft.Location = new System.Drawing.Point(455, 392);
this.btnLeft.Name = "btnLeft";
this.btnLeft.Size = new System.Drawing.Size(75, 23);
this.btnLeft.TabIndex = 4;
this.btnLeft.Text = "btnLeft";
this.btnLeft.UseVisualStyleBackColor = true;
this.btnLeft.Click += new System.EventHandler(this.btnLeft_Click);
//
// btnRight
//
this.btnRight.Location = new System.Drawing.Point(663, 392);
this.btnRight.Name = "btnRight";
this.btnRight.Size = new System.Drawing.Size(75, 23);
this.btnRight.TabIndex = 5;
this.btnRight.Text = "btnRight";
this.btnRight.UseVisualStyleBackColor = true;
this.btnRight.Click += new System.EventHandler(this.btnRight_Click);
//
// pnlMain
//
this.pnlMain.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.pnlMain.Location = new System.Drawing.Point(39, 13);
this.pnlMain.Name = "pnlMain";
this.pnlMain.Size = new System.Drawing.Size(1130, 328);
this.pnlMain.TabIndex = 6;
//
// tmrRed
//
this.tmrRed.Interval = 500;
this.tmrRed.Tick += new System.EventHandler(this.tmrRed_Tick);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1218, 510);
this.Controls.Add(this.pnlMain);
this.Controls.Add(this.btnRight);
this.Controls.Add(this.btnLeft);
this.Controls.Add(this.btnDown);
this.Controls.Add(this.btnUp);
this.Controls.Add(this.btnMakeRed);
this.Controls.Add(this.MakeBlack);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button MakeBlack;
private System.Windows.Forms.Button btnMakeRed;
private System.Windows.Forms.Button btnUp;
private System.Windows.Forms.Button btnDown;
private System.Windows.Forms.Button btnLeft;
private System.Windows.Forms.Button btnRight;
private System.Windows.Forms.Panel pnlMain;
private System.Windows.Forms.Timer tmrRed;
}
}