Sfall-ScriptEditor

Форк
0
/
BatchCompiler.Designer.cs 
128 строк · 6.1 Кб
1
namespace ScriptEditor {
2
    partial class BatchCompiler {
3
        /// <summary>
4
        /// Required designer variable.
5
        /// </summary>
6
        private System.ComponentModel.IContainer components = null;
7

8
        /// <summary>
9
        /// Clean up any resources being used.
10
        /// </summary>
11
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12
        protected override void Dispose(bool disposing) {
13
            if(disposing && (components != null)) {
14
                components.Dispose();
15
            }
16
            base.Dispose(disposing);
17
        }
18

19
        #region Windows Form Designer generated code
20

21
        /// <summary>
22
        /// Required method for Designer support - do not modify
23
        /// the contents of this method with the code editor.
24
        /// </summary>
25
        private void InitializeComponent() {
26
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BatchCompiler));
27
            this.bCancel = new System.Windows.Forms.Button();
28
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
29
            this.label1 = new System.Windows.Forms.Label();
30
            this.textBox = new System.Windows.Forms.TextBox();
31
            this.bClose = new System.Windows.Forms.Button();
32
            this.SuspendLayout();
33
            // 
34
            // bCancel
35
            // 
36
            this.bCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
37
            this.bCancel.Location = new System.Drawing.Point(168, 41);
38
            this.bCancel.Name = "bCancel";
39
            this.bCancel.Size = new System.Drawing.Size(75, 23);
40
            this.bCancel.TabIndex = 1;
41
            this.bCancel.Text = "Cancel";
42
            this.bCancel.UseVisualStyleBackColor = true;
43
            this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
44
            // 
45
            // progressBar1
46
            // 
47
            this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
48
            | System.Windows.Forms.AnchorStyles.Right)));
49
            this.progressBar1.Location = new System.Drawing.Point(4, 12);
50
            this.progressBar1.Name = "progressBar1";
51
            this.progressBar1.Size = new System.Drawing.Size(239, 23);
52
            this.progressBar1.Step = 1;
53
            this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
54
            this.progressBar1.TabIndex = 0;
55
            // 
56
            // label1
57
            // 
58
            this.label1.AutoSize = true;
59
            this.label1.ForeColor = System.Drawing.Color.Red;
60
            this.label1.Location = new System.Drawing.Point(2, 46);
61
            this.label1.Name = "label1";
62
            this.label1.Size = new System.Drawing.Size(0, 13);
63
            this.label1.TabIndex = 2;
64
            // 
65
            // textBox
66
            // 
67
            this.textBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
68
            | System.Windows.Forms.AnchorStyles.Left)
69
            | System.Windows.Forms.AnchorStyles.Right)));
70
            this.textBox.BackColor = System.Drawing.Color.Black;
71
            this.textBox.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
72
            this.textBox.ForeColor = System.Drawing.Color.Lime;
73
            this.textBox.Location = new System.Drawing.Point(5, 70);
74
            this.textBox.Multiline = true;
75
            this.textBox.Name = "textBox";
76
            this.textBox.ReadOnly = true;
77
            this.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
78
            this.textBox.Size = new System.Drawing.Size(239, 170);
79
            this.textBox.TabIndex = 3;
80
            this.textBox.Text = "Compiling...\r\n";
81
            // 
82
            // bClose
83
            // 
84
            this.bClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
85
            this.bClose.Location = new System.Drawing.Point(168, 41);
86
            this.bClose.Name = "bClose";
87
            this.bClose.Size = new System.Drawing.Size(75, 23);
88
            this.bClose.TabIndex = 5;
89
            this.bClose.Text = "Close";
90
            this.bClose.UseVisualStyleBackColor = true;
91
            this.bClose.Visible = false;
92
            this.bClose.Click += new System.EventHandler(this.bClose_Click);
93
            // 
94
            // BatchCompiler
95
            // 
96
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
97
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
98
            this.ClientSize = new System.Drawing.Size(247, 244);
99
            this.ControlBox = false;
100
            this.Controls.Add(this.textBox);
101
            this.Controls.Add(this.label1);
102
            this.Controls.Add(this.bCancel);
103
            this.Controls.Add(this.progressBar1);
104
            this.Controls.Add(this.bClose);
105
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
106
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
107
            this.MaximizeBox = false;
108
            this.MaximumSize = new System.Drawing.Size(400, 500);
109
            this.MinimizeBox = false;
110
            this.MinimumSize = new System.Drawing.Size(255, 200);
111
            this.Name = "BatchCompiler";
112
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
113
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
114
            this.Text = "Batch Compiler";
115
            this.ResumeLayout(false);
116
            this.PerformLayout();
117

118
        }
119

120
        #endregion
121

122
        private System.Windows.Forms.ProgressBar progressBar1;
123
        private System.Windows.Forms.Label label1;
124
        private System.Windows.Forms.Button bCancel;
125
        private System.Windows.Forms.TextBox textBox;
126
        private System.Windows.Forms.Button bClose;
127
    }
128
}

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.