testFrom.Designer.cs
- namespace ModelessDialogTest
- {
- partial class testFrom
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.button_get = new System.Windows.Forms.Button();
- this.button_ok = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(13, 89);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(244, 28);
- this.textBox1.TabIndex = 0;
- //
- // button_get
- //
- this.button_get.Location = new System.Drawing.Point(11, 22);
- this.button_get.Name = "button_get";
- this.button_get.Size = new System.Drawing.Size(102, 49);
- this.button_get.TabIndex = 1;
- this.button_get.Text = "Get";
- this.button_get.UseVisualStyleBackColor = true;
- this.button_get.Click += new System.EventHandler(this.button_get_Click);
- //
- // button_ok
- //
- this.button_ok.Location = new System.Drawing.Point(155, 22);
- this.button_ok.Name = "button_ok";
- this.button_ok.Size = new System.Drawing.Size(102, 49);
- this.button_ok.TabIndex = 2;
- this.button_ok.Text = "OK";
- this.button_ok.UseVisualStyleBackColor = true;
- this.button_ok.Click += new System.EventHandler(this.button_ok_Click);
- //
- // testFrom
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(282, 151);
- this.Controls.Add(this.button_ok);
- this.Controls.Add(this.button_get);
- this.Controls.Add(this.textBox1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
- this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "testFrom";
- this.ShowInTaskbar = false;
- this.Text = "CAD交互";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Button button_get;
- private System.Windows.Forms.Button button_ok;
- }
- }
|