Subversion Repositories Code-Repo

Rev

Rev 44 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
34 Kevin 1
namespace DriveLogger
2
{
3
    partial class LabelPrompt
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.lbl_Prompt = new System.Windows.Forms.Label();
32
            this.txt_Prompt = new System.Windows.Forms.TextBox();
33
            this.btn_Prompt = new System.Windows.Forms.Button();
34
            this.SuspendLayout();
35
            // 
36
            // lbl_Prompt
37
            // 
38
            this.lbl_Prompt.AutoSize = true;
39
            this.lbl_Prompt.Location = new System.Drawing.Point(37, 9);
40
            this.lbl_Prompt.Name = "lbl_Prompt";
41
            this.lbl_Prompt.Size = new System.Drawing.Size(81, 13);
42
            this.lbl_Prompt.TabIndex = 0;
43
            this.lbl_Prompt.Text = "Enter Drive Info";
44
            // 
45
            // txt_Prompt
46
            // 
47
            this.txt_Prompt.Location = new System.Drawing.Point(12, 25);
48
            this.txt_Prompt.Name = "txt_Prompt";
49
            this.txt_Prompt.Size = new System.Drawing.Size(130, 20);
50
            this.txt_Prompt.TabIndex = 1;
51
            // 
52
            // btn_Prompt
53
            // 
54
            this.btn_Prompt.Location = new System.Drawing.Point(40, 51);
55
            this.btn_Prompt.Name = "btn_Prompt";
56
            this.btn_Prompt.Size = new System.Drawing.Size(75, 23);
57
            this.btn_Prompt.TabIndex = 2;
58
            this.btn_Prompt.Text = "Ok";
59
            this.btn_Prompt.UseVisualStyleBackColor = true;
60
            this.btn_Prompt.Click += new System.EventHandler(this.btn_Prompt_Click);
61
            // 
62
            // LabelPrompt
63
            // 
64
            this.AcceptButton = this.btn_Prompt;
65
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
66
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
67
            this.ClientSize = new System.Drawing.Size(154, 86);
68
            this.ControlBox = false;
69
            this.Controls.Add(this.btn_Prompt);
70
            this.Controls.Add(this.txt_Prompt);
71
            this.Controls.Add(this.lbl_Prompt);
72
            this.Name = "LabelPrompt";
38 Kevin 73
            this.ShowInTaskbar = false;
34 Kevin 74
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
75
            this.Text = "Device Information";
76
            this.TopMost = true;
77
            this.ResumeLayout(false);
78
            this.PerformLayout();
79
 
80
        }
81
 
82
        #endregion
83
 
84
        private System.Windows.Forms.Label lbl_Prompt;
85
        private System.Windows.Forms.TextBox txt_Prompt;
86
        private System.Windows.Forms.Button btn_Prompt;
87
    }
88
}