MainForm.Designer.cs 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. 
  2. namespace WinLists
  3. {
  4. partial class MainForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  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. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.lbItems = new System.Windows.Forms.ListBox();
  30. this.btnLaunch = new System.Windows.Forms.Button();
  31. this.lblOutput = new System.Windows.Forms.Label();
  32. this.SuspendLayout();
  33. //
  34. // lbItems
  35. //
  36. this.lbItems.FormattingEnabled = true;
  37. this.lbItems.ItemHeight = 15;
  38. this.lbItems.Items.AddRange(new object[] {
  39. "Hello World",
  40. "Vadim is the best",
  41. "Pascal sucks",
  42. "Texbot. By students, for EVERYONE!",
  43. "Sample text"});
  44. this.lbItems.Location = new System.Drawing.Point(12, 12);
  45. this.lbItems.Name = "lbItems";
  46. this.lbItems.Size = new System.Drawing.Size(776, 199);
  47. this.lbItems.TabIndex = 0;
  48. //
  49. // btnLaunch
  50. //
  51. this.btnLaunch.Location = new System.Drawing.Point(12, 217);
  52. this.btnLaunch.Name = "btnLaunch";
  53. this.btnLaunch.Size = new System.Drawing.Size(100, 31);
  54. this.btnLaunch.TabIndex = 1;
  55. this.btnLaunch.Text = "Пуск";
  56. this.btnLaunch.UseVisualStyleBackColor = true;
  57. this.btnLaunch.Click += new System.EventHandler(this.btnLaunchClick);
  58. //
  59. // lblOutput
  60. //
  61. this.lblOutput.AutoSize = true;
  62. this.lblOutput.Font = new System.Drawing.Font("Segoe UI Semibold", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
  63. this.lblOutput.Location = new System.Drawing.Point(12, 251);
  64. this.lblOutput.Name = "lblOutput";
  65. this.lblOutput.Size = new System.Drawing.Size(191, 32);
  66. this.lblOutput.TabIndex = 2;
  67. this.lblOutput.Text = "Надпись ответа";
  68. //
  69. // MainForm
  70. //
  71. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  72. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  73. this.ClientSize = new System.Drawing.Size(800, 450);
  74. this.Controls.Add(this.lblOutput);
  75. this.Controls.Add(this.btnLaunch);
  76. this.Controls.Add(this.lbItems);
  77. this.Name = "MainForm";
  78. this.Text = "Обработка срок";
  79. this.Load += new System.EventHandler(this.MainFormLoad);
  80. this.ResumeLayout(false);
  81. this.PerformLayout();
  82. }
  83. #endregion
  84. private System.Windows.Forms.ListBox lbItems;
  85. private System.Windows.Forms.Button btnLaunch;
  86. private System.Windows.Forms.Label lblOutput;
  87. }
  88. }