using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace DlgBoxPropertiesTest
{
/// <summary>
/// Summary description for DlgBox.
/// </summary>
public class DlgBox : System.Windows.Forms.Form
{
private
System.Windows.Forms.Button button1;
private
System.Windows.Forms.Button button2;
private
System.Windows.Forms.Button button3;
private
System.Windows.Forms.Button button_Exit;
/// <summary>
/// Required designer variable.
/// </summary>
private
System.ComponentModel.Container components = null;
public DlgBox()
{
//
// Required
for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add
any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being
used.
/// </summary>
protected override void Dispose(
bool disposing )
{
if( disposing )
{
if(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.button1 =
new System.Windows.Forms.Button();
this.button2 =
new System.Windows.Forms.Button();
this.button3 =
new System.Windows.Forms.Button();
this.button_Exit = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(40, 64);
this.button1.Name = "button1";
this.button1.TabIndex = 0;
this.button1.Text = "button1";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(40, 112);
this.button2.Name = "button2";
this.button2.TabIndex = 1;
this.button2.Text = "button2";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button3
//
this.button3.Location = new System.Drawing.Point(40, 152);
this.button3.Name = "button3";
this.button3.TabIndex = 2;
this.button3.Text = "button3";
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// button_Exit
//
this.button_Exit.Location = new System.Drawing.Point(200, 216);
this.button_Exit.Name = "button_Exit";
this.button_Exit.TabIndex = 3;
this.button_Exit.Text = "Exit";
this.button_Exit.Click += new
System.EventHandler(this.button_Exit_Click);
//
// DlgBox
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.button_Exit,
this.button3,
this.button2,
this.button1});
this.Name =
"DlgBox";
this.Text =
"DlgBox";
this.ResumeLayout(false);
}
#endregion
private int xButton;
private void button1_Click(object
sender, System.EventArgs e)
{
xButton = 1;
}
private void button2_Click(object
sender, System.EventArgs e)
{
xButton = 2;
}
private void button3_Click(object
sender, System.EventArgs e)
{
xButton = 3;
}
private void
button_Exit_Click(object sender, System.EventArgs e)
{
this.Close();
}
public int XButton
{
get
{
return xButton;
}
set
{
// not used in this example
}
}
}
}