|
@@ -0,0 +1,125 @@
|
|
|
+namespace WindowsFormsApp1
|
|
|
+{
|
|
|
+ partial class fArray
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// Обязательная переменная конструктора.
|
|
|
+ /// </summary>
|
|
|
+ private System.ComponentModel.IContainer components = null;
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Освободить все используемые ресурсы.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
|
|
+ protected override void Dispose(bool disposing)
|
|
|
+ {
|
|
|
+ if (disposing && (components != null))
|
|
|
+ {
|
|
|
+ components.Dispose();
|
|
|
+ }
|
|
|
+ base.Dispose(disposing);
|
|
|
+ }
|
|
|
+
|
|
|
+ #region Код, автоматически созданный конструктором форм Windows
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Требуемый метод для поддержки конструктора — не изменяйте
|
|
|
+ /// содержимое этого метода с помощью редактора кода.
|
|
|
+ /// </summary>
|
|
|
+ private void InitializeComponent()
|
|
|
+ {
|
|
|
+ this.tbOutputNewArray = new System.Windows.Forms.TextBox();
|
|
|
+ this.tbOutputAnswer = new System.Windows.Forms.TextBox();
|
|
|
+ this.btnFillArray = new System.Windows.Forms.Button();
|
|
|
+ this.btnReplaceArray = new System.Windows.Forms.Button();
|
|
|
+ this.label1 = new System.Windows.Forms.Label();
|
|
|
+ this.label2 = new System.Windows.Forms.Label();
|
|
|
+ this.SuspendLayout();
|
|
|
+ //
|
|
|
+ // tbOutputNewArray
|
|
|
+ //
|
|
|
+ this.tbOutputNewArray.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
|
+ this.tbOutputNewArray.Location = new System.Drawing.Point(12, 27);
|
|
|
+ this.tbOutputNewArray.Multiline = true;
|
|
|
+ this.tbOutputNewArray.Name = "tbOutputNewArray";
|
|
|
+ this.tbOutputNewArray.Size = new System.Drawing.Size(148, 301);
|
|
|
+ this.tbOutputNewArray.TabIndex = 0;
|
|
|
+ //
|
|
|
+ // tbOutputAnswer
|
|
|
+ //
|
|
|
+ this.tbOutputAnswer.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
|
+ this.tbOutputAnswer.Location = new System.Drawing.Point(177, 27);
|
|
|
+ this.tbOutputAnswer.Multiline = true;
|
|
|
+ this.tbOutputAnswer.Name = "tbOutputAnswer";
|
|
|
+ this.tbOutputAnswer.Size = new System.Drawing.Size(148, 301);
|
|
|
+ this.tbOutputAnswer.TabIndex = 1;
|
|
|
+ //
|
|
|
+ // btnFillArray
|
|
|
+ //
|
|
|
+ this.btnFillArray.Location = new System.Drawing.Point(12, 344);
|
|
|
+ this.btnFillArray.Name = "btnFillArray";
|
|
|
+ this.btnFillArray.Size = new System.Drawing.Size(148, 26);
|
|
|
+ this.btnFillArray.TabIndex = 2;
|
|
|
+ this.btnFillArray.Text = "Заполнить";
|
|
|
+ this.btnFillArray.UseVisualStyleBackColor = true;
|
|
|
+ this.btnFillArray.Click += new System.EventHandler(this.btnFillArray_Click);
|
|
|
+ //
|
|
|
+ // btnReplaceArray
|
|
|
+ //
|
|
|
+ this.btnReplaceArray.Location = new System.Drawing.Point(177, 344);
|
|
|
+ this.btnReplaceArray.Name = "btnReplaceArray";
|
|
|
+ this.btnReplaceArray.Size = new System.Drawing.Size(148, 26);
|
|
|
+ this.btnReplaceArray.TabIndex = 3;
|
|
|
+ this.btnReplaceArray.Text = "Замена";
|
|
|
+ this.btnReplaceArray.UseVisualStyleBackColor = true;
|
|
|
+ this.btnReplaceArray.Click += new System.EventHandler(this.btnReplaceArray_Click);
|
|
|
+ //
|
|
|
+ // label1
|
|
|
+ //
|
|
|
+ this.label1.AutoSize = true;
|
|
|
+ this.label1.Location = new System.Drawing.Point(12, 9);
|
|
|
+ this.label1.Name = "label1";
|
|
|
+ this.label1.Size = new System.Drawing.Size(99, 13);
|
|
|
+ this.label1.TabIndex = 4;
|
|
|
+ this.label1.Text = "Исходный массив";
|
|
|
+ //
|
|
|
+ // label2
|
|
|
+ //
|
|
|
+ this.label2.AutoSize = true;
|
|
|
+ this.label2.Location = new System.Drawing.Point(174, 9);
|
|
|
+ this.label2.Name = "label2";
|
|
|
+ this.label2.Size = new System.Drawing.Size(110, 13);
|
|
|
+ this.label2.TabIndex = 5;
|
|
|
+ this.label2.Text = "Полученный массив";
|
|
|
+ //
|
|
|
+ // fArray
|
|
|
+ //
|
|
|
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
+ this.ClientSize = new System.Drawing.Size(338, 382);
|
|
|
+ this.Controls.Add(this.label2);
|
|
|
+ this.Controls.Add(this.label1);
|
|
|
+ this.Controls.Add(this.btnReplaceArray);
|
|
|
+ this.Controls.Add(this.btnFillArray);
|
|
|
+ this.Controls.Add(this.tbOutputAnswer);
|
|
|
+ this.Controls.Add(this.tbOutputNewArray);
|
|
|
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
|
+ this.Name = "fArray";
|
|
|
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
|
+ this.Text = "Array calculate";
|
|
|
+ this.ResumeLayout(false);
|
|
|
+ this.PerformLayout();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ #endregion
|
|
|
+
|
|
|
+ private System.Windows.Forms.TextBox tbOutputNewArray;
|
|
|
+ private System.Windows.Forms.TextBox tbOutputAnswer;
|
|
|
+ private System.Windows.Forms.Button btnFillArray;
|
|
|
+ private System.Windows.Forms.Button btnReplaceArray;
|
|
|
+ private System.Windows.Forms.Label label1;
|
|
|
+ private System.Windows.Forms.Label label2;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|