source: 2015/24/EemeliK/Cmd/Cmd/Form1.Designer.cs @ 7154

Revision 7154, 3.6 KB checked in by sieerinn, 7 years ago (diff)
Line 
1namespace Cmd
2{
3    partial class Form1
4    {
5        /// <summary>
6        /// Required designer variable.
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// Clean up any resources being used.
12        /// </summary>
13        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14        protected override void Dispose(bool disposing)
15        {
16            if (disposing && (components != null))
17            {
18                components.Dispose();
19            }
20            base.Dispose(disposing);
21        }
22
23        #region Windows Form Designer generated code
24
25        /// <summary>
26        /// Required method for Designer support - do not modify
27        /// the contents of this method with the code editor.
28        /// </summary>
29        private void InitializeComponent()
30        {
31            this.components = new System.ComponentModel.Container();
32            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
33            this.label1 = new System.Windows.Forms.Label();
34            this.timer1 = new System.Windows.Forms.Timer(this.components);
35            this.label2 = new System.Windows.Forms.Label();
36            this.SuspendLayout();
37            //
38            // label1
39            //
40            this.label1.AutoSize = true;
41            this.label1.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
42            this.label1.ForeColor = System.Drawing.Color.Silver;
43            this.label1.Location = new System.Drawing.Point(2, 4);
44            this.label1.Name = "label1";
45            this.label1.Size = new System.Drawing.Size(448, 60);
46            this.label1.TabIndex = 0;
47            this.label1.Text = "Microsoft Windows [Version 6.1.7601]\r\nCopyright (c) 2009 Microsoft Corporation.  " +
48    "All rights reserved.\r\n\r\nC:\\Users\\eemeli.kotro>";
49            //
50            // timer1
51            //
52            this.timer1.Interval = 500;
53            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
54            //
55            // label2
56            //
57            this.label2.AutoSize = true;
58            this.label2.ForeColor = System.Drawing.Color.Silver;
59            this.label2.Location = new System.Drawing.Point(180, 42);
60            this.label2.Name = "label2";
61            this.label2.Size = new System.Drawing.Size(13, 13);
62            this.label2.TabIndex = 1;
63            this.label2.Text = "_";
64            this.label2.Click += new System.EventHandler(this.label2_Click);
65            //
66            // Form1
67            //
68            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
69            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
70            this.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
71            this.ClientSize = new System.Drawing.Size(656, 333);
72            this.Controls.Add(this.label2);
73            this.Controls.Add(this.label1);
74            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
75            this.Name = "Form1";
76            this.Text = "C:\\Windows\\system32\\cmd.exe";
77            this.ResumeLayout(false);
78            this.PerformLayout();
79
80        }
81
82        #endregion
83
84        private System.Windows.Forms.Label label1;
85        private System.Windows.Forms.Timer timer1;
86        private System.Windows.Forms.Label label2;
87    }
88}
89
Note: See TracBrowser for help on using the repository browser.