1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
-
- namespace WinLists
- {
- partial class MainForm
- {
- /// <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.lbItems = new System.Windows.Forms.ListBox();
- this.btnLaunch = new System.Windows.Forms.Button();
- this.lblOutput = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // lbItems
- //
- this.lbItems.FormattingEnabled = true;
- this.lbItems.ItemHeight = 15;
- this.lbItems.Items.AddRange(new object[] {
- "Hello World",
- "Vadim is the best",
- "Pascal sucks",
- "Texbot. By students, for EVERYONE!",
- "Sample text"});
- this.lbItems.Location = new System.Drawing.Point(12, 12);
- this.lbItems.Name = "lbItems";
- this.lbItems.Size = new System.Drawing.Size(776, 199);
- this.lbItems.TabIndex = 0;
- //
- // btnLaunch
- //
- this.btnLaunch.Location = new System.Drawing.Point(12, 217);
- this.btnLaunch.Name = "btnLaunch";
- this.btnLaunch.Size = new System.Drawing.Size(100, 31);
- this.btnLaunch.TabIndex = 1;
- this.btnLaunch.Text = "Пуск";
- this.btnLaunch.UseVisualStyleBackColor = true;
- this.btnLaunch.Click += new System.EventHandler(this.btnLaunchClick);
- //
- // lblOutput
- //
- this.lblOutput.AutoSize = true;
- this.lblOutput.Font = new System.Drawing.Font("Segoe UI Semibold", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
- this.lblOutput.Location = new System.Drawing.Point(12, 251);
- this.lblOutput.Name = "lblOutput";
- this.lblOutput.Size = new System.Drawing.Size(191, 32);
- this.lblOutput.TabIndex = 2;
- this.lblOutput.Text = "Надпись ответа";
- //
- // MainForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(800, 450);
- this.Controls.Add(this.lblOutput);
- this.Controls.Add(this.btnLaunch);
- this.Controls.Add(this.lbItems);
- this.Name = "MainForm";
- this.Text = "Обработка срок";
- this.Load += new System.EventHandler(this.MainFormLoad);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.ListBox lbItems;
- private System.Windows.Forms.Button btnLaunch;
- private System.Windows.Forms.Label lblOutput;
- }
- }
|