namespace WindowsFormsApplication3 { partial class Form3 { /// /// Требуется переменная конструктора. /// private System.ComponentModel.IContainer components = null; /// /// Освободить все используемые ресурсы. /// /// истинно, если управляемый ресурс должен быть удален; иначе ложно. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Код, автоматически созданный конструктором форм Windows /// /// Обязательный метод для поддержки конструктора - не изменяйте /// содержимое данного метода при помощи редактора кода. /// private void InitializeComponent() { this.button1 = new System.Windows.Forms.Button(); this.Result = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // button1 // this.button1.AccessibleRole = System.Windows.Forms.AccessibleRole.None; this.button1.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.button1.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.button1.Location = new System.Drawing.Point(103, 107); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(58, 26); this.button1.TabIndex = 1; this.button1.Text = "Ok"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // Result // this.Result.AcceptsReturn = true; this.Result.AcceptsTab = true; this.Result.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.Result.Location = new System.Drawing.Point(38, 21); this.Result.Multiline = true; this.Result.Name = "Result"; this.Result.ReadOnly = true; this.Result.Size = new System.Drawing.Size(187, 75); this.Result.TabIndex = 2; // // Form3 // this.AcceptButton = this.button1; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoSize = true; this.CancelButton = this.button1; this.ClientSize = new System.Drawing.Size(259, 150); this.Controls.Add(this.Result); this.Controls.Add(this.button1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "Form3"; this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; this.Text = "Result"; this.TopMost = true; this.WindowState = System.Windows.Forms.FormWindowState.Minimized; this.ResumeLayout(false); this.PerformLayout(); } void button1_Click(object sender, System.EventArgs e) { Close(); } public string ResultText { set { Result.Text = value; } get { return Result.Text; } } #endregion private System.Windows.Forms.Button button1; private System.Windows.Forms.TextBox Result; } }