MainForm.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. 
  2. namespace ArrayForms
  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.lblBefore = new System.Windows.Forms.Label();
  30. this.lbBefore = new System.Windows.Forms.ListBox();
  31. this.lbAfter = new System.Windows.Forms.ListBox();
  32. this.lblAfter = new System.Windows.Forms.Label();
  33. this.btnFill = new System.Windows.Forms.Button();
  34. this.btnMove = new System.Windows.Forms.Button();
  35. this.SuspendLayout();
  36. //
  37. // lblBefore
  38. //
  39. this.lblBefore.AutoSize = true;
  40. this.lblBefore.Location = new System.Drawing.Point(13, 13);
  41. this.lblBefore.Name = "lblBefore";
  42. this.lblBefore.Size = new System.Drawing.Size(110, 15);
  43. this.lblBefore.TabIndex = 0;
  44. this.lblBefore.Text = "Исходный массив:";
  45. //
  46. // lbBefore
  47. //
  48. this.lbBefore.FormattingEnabled = true;
  49. this.lbBefore.ItemHeight = 15;
  50. this.lbBefore.Location = new System.Drawing.Point(13, 32);
  51. this.lbBefore.Name = "lbBefore";
  52. this.lbBefore.Size = new System.Drawing.Size(203, 469);
  53. this.lbBefore.TabIndex = 1;
  54. //
  55. // lbAfter
  56. //
  57. this.lbAfter.FormattingEnabled = true;
  58. this.lbAfter.ItemHeight = 15;
  59. this.lbAfter.Location = new System.Drawing.Point(249, 32);
  60. this.lbAfter.Name = "lbAfter";
  61. this.lbAfter.Size = new System.Drawing.Size(203, 469);
  62. this.lbAfter.TabIndex = 2;
  63. //
  64. // lblAfter
  65. //
  66. this.lblAfter.AutoSize = true;
  67. this.lblAfter.Location = new System.Drawing.Point(249, 13);
  68. this.lblAfter.Name = "lblAfter";
  69. this.lblAfter.Size = new System.Drawing.Size(125, 15);
  70. this.lblAfter.TabIndex = 3;
  71. this.lblAfter.Text = "Полученный массив:";
  72. //
  73. // btnFill
  74. //
  75. this.btnFill.Location = new System.Drawing.Point(13, 508);
  76. this.btnFill.Name = "btnFill";
  77. this.btnFill.Size = new System.Drawing.Size(203, 33);
  78. this.btnFill.TabIndex = 4;
  79. this.btnFill.Text = "Заполнить";
  80. this.btnFill.UseVisualStyleBackColor = true;
  81. this.btnFill.Click += new System.EventHandler(this.btnFill_Click);
  82. //
  83. // btnMove
  84. //
  85. this.btnMove.Location = new System.Drawing.Point(249, 511);
  86. this.btnMove.Name = "btnMove";
  87. this.btnMove.Size = new System.Drawing.Size(203, 33);
  88. this.btnMove.TabIndex = 5;
  89. this.btnMove.Text = "Перестановка";
  90. this.btnMove.UseVisualStyleBackColor = true;
  91. this.btnMove.Click += new System.EventHandler(this.btnMove_Click);
  92. //
  93. // MainForm
  94. //
  95. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  96. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  97. this.ClientSize = new System.Drawing.Size(464, 556);
  98. this.Controls.Add(this.btnMove);
  99. this.Controls.Add(this.btnFill);
  100. this.Controls.Add(this.lblAfter);
  101. this.Controls.Add(this.lbAfter);
  102. this.Controls.Add(this.lbBefore);
  103. this.Controls.Add(this.lblBefore);
  104. this.Name = "MainForm";
  105. this.Text = "Одномерные массивы";
  106. this.ResumeLayout(false);
  107. this.PerformLayout();
  108. }
  109. #endregion
  110. private System.Windows.Forms.Label lblBefore;
  111. private System.Windows.Forms.ListBox lbBefore;
  112. private System.Windows.Forms.ListBox lbAfter;
  113. private System.Windows.Forms.Label lblAfter;
  114. private System.Windows.Forms.Button btnFill;
  115. private System.Windows.Forms.Button btnMove;
  116. }
  117. }