ArrayCalculate.Designer.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. namespace WindowsFormsApp1
  2. {
  3. partial class fArray
  4. {
  5. /// <summary>
  6. /// Обязательная переменная конструктора.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Освободить все используемые ресурсы.
  11. /// </summary>
  12. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Код, автоматически созданный конструктором форм Windows
  22. /// <summary>
  23. /// Требуемый метод для поддержки конструктора — не изменяйте
  24. /// содержимое этого метода с помощью редактора кода.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.tbOutputNewArray = new System.Windows.Forms.TextBox();
  29. this.tbOutputAnswer = new System.Windows.Forms.TextBox();
  30. this.btnFillArray = new System.Windows.Forms.Button();
  31. this.btnReplaceArray = new System.Windows.Forms.Button();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // tbOutputNewArray
  37. //
  38. this.tbOutputNewArray.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  39. this.tbOutputNewArray.Location = new System.Drawing.Point(12, 27);
  40. this.tbOutputNewArray.Multiline = true;
  41. this.tbOutputNewArray.Name = "tbOutputNewArray";
  42. this.tbOutputNewArray.Size = new System.Drawing.Size(148, 301);
  43. this.tbOutputNewArray.TabIndex = 0;
  44. //
  45. // tbOutputAnswer
  46. //
  47. this.tbOutputAnswer.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  48. this.tbOutputAnswer.Location = new System.Drawing.Point(177, 27);
  49. this.tbOutputAnswer.Multiline = true;
  50. this.tbOutputAnswer.Name = "tbOutputAnswer";
  51. this.tbOutputAnswer.Size = new System.Drawing.Size(148, 301);
  52. this.tbOutputAnswer.TabIndex = 1;
  53. //
  54. // btnFillArray
  55. //
  56. this.btnFillArray.Location = new System.Drawing.Point(12, 344);
  57. this.btnFillArray.Name = "btnFillArray";
  58. this.btnFillArray.Size = new System.Drawing.Size(148, 26);
  59. this.btnFillArray.TabIndex = 2;
  60. this.btnFillArray.Text = "Заполнить";
  61. this.btnFillArray.UseVisualStyleBackColor = true;
  62. this.btnFillArray.Click += new System.EventHandler(this.btnFillArray_Click);
  63. //
  64. // btnReplaceArray
  65. //
  66. this.btnReplaceArray.Location = new System.Drawing.Point(177, 344);
  67. this.btnReplaceArray.Name = "btnReplaceArray";
  68. this.btnReplaceArray.Size = new System.Drawing.Size(148, 26);
  69. this.btnReplaceArray.TabIndex = 3;
  70. this.btnReplaceArray.Text = "Замена";
  71. this.btnReplaceArray.UseVisualStyleBackColor = true;
  72. this.btnReplaceArray.Click += new System.EventHandler(this.btnReplaceArray_Click);
  73. //
  74. // label1
  75. //
  76. this.label1.AutoSize = true;
  77. this.label1.Location = new System.Drawing.Point(12, 9);
  78. this.label1.Name = "label1";
  79. this.label1.Size = new System.Drawing.Size(99, 13);
  80. this.label1.TabIndex = 4;
  81. this.label1.Text = "Исходный массив";
  82. //
  83. // label2
  84. //
  85. this.label2.AutoSize = true;
  86. this.label2.Location = new System.Drawing.Point(174, 9);
  87. this.label2.Name = "label2";
  88. this.label2.Size = new System.Drawing.Size(110, 13);
  89. this.label2.TabIndex = 5;
  90. this.label2.Text = "Полученный массив";
  91. //
  92. // fArray
  93. //
  94. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  95. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  96. this.ClientSize = new System.Drawing.Size(338, 382);
  97. this.Controls.Add(this.label2);
  98. this.Controls.Add(this.label1);
  99. this.Controls.Add(this.btnReplaceArray);
  100. this.Controls.Add(this.btnFillArray);
  101. this.Controls.Add(this.tbOutputAnswer);
  102. this.Controls.Add(this.tbOutputNewArray);
  103. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  104. this.Name = "fArray";
  105. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  106. this.Text = "Array calculate";
  107. this.ResumeLayout(false);
  108. this.PerformLayout();
  109. }
  110. #endregion
  111. private System.Windows.Forms.TextBox tbOutputNewArray;
  112. private System.Windows.Forms.TextBox tbOutputAnswer;
  113. private System.Windows.Forms.Button btnFillArray;
  114. private System.Windows.Forms.Button btnReplaceArray;
  115. private System.Windows.Forms.Label label1;
  116. private System.Windows.Forms.Label label2;
  117. }
  118. }