71 lines
2.5 KiB
C#
71 lines
2.5 KiB
C#
namespace Microsoft.ManagementConsole.Samples
|
|
{
|
|
partial class UserDefinedForm
|
|
{
|
|
/// <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.ButtonCancel = new System.Windows.Forms.Button();
|
|
this.ButtonOk = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// ButtonCancel
|
|
//
|
|
this.ButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.ButtonCancel.Location = new System.Drawing.Point(186, 57);
|
|
this.ButtonCancel.Name = "ButtonCancel";
|
|
this.ButtonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.ButtonCancel.TabIndex = 0;
|
|
this.ButtonCancel.Text = "Cancel";
|
|
//
|
|
// ButtonOk
|
|
//
|
|
this.ButtonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.ButtonOk.Location = new System.Drawing.Point(89, 57);
|
|
this.ButtonOk.Name = "ButtonOk";
|
|
this.ButtonOk.Size = new System.Drawing.Size(75, 23);
|
|
this.ButtonOk.TabIndex = 1;
|
|
this.ButtonOk.Text = "Ok";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(308, 113);
|
|
this.Controls.Add(this.ButtonOk);
|
|
this.Controls.Add(this.ButtonCancel);
|
|
this.Name = "Form1";
|
|
this.Text = "Sample User Defined Form";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button ButtonCancel;
|
|
private System.Windows.Forms.Button ButtonOk;
|
|
}
|
|
} |