using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; namespace TestDrag { /// /// Summary description for frmMain. /// public class frmMain : System.Windows.Forms.Form { private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Button btnDetailsView; private System.Windows.Forms.GroupBox groupBox3; private System.Windows.Forms.Button button2; private System.Windows.Forms.Button btnClose; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.Button button1; private System.Windows.Forms.GroupBox groupBox4; private System.Windows.Forms.Button button3; /// /// Required designer variable. /// private System.ComponentModel.Container components = null; public frmMain() { // // Required for Windows Form Designer support // InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // } /// /// Clean up any resources being used. /// protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.groupBox1 = new System.Windows.Forms.GroupBox(); this.btnDetailsView = new System.Windows.Forms.Button(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.button2 = new System.Windows.Forms.Button(); this.btnClose = new System.Windows.Forms.Button(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.button1 = new System.Windows.Forms.Button(); this.groupBox4 = new System.Windows.Forms.GroupBox(); this.button3 = new System.Windows.Forms.Button(); this.groupBox1.SuspendLayout(); this.groupBox3.SuspendLayout(); this.groupBox2.SuspendLayout(); this.groupBox4.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Controls.Add(this.btnDetailsView); this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System; this.groupBox1.Location = new System.Drawing.Point(8, 8); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(136, 72); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Detail\'s View:"; // // btnDetailsView // this.btnDetailsView.FlatStyle = System.Windows.Forms.FlatStyle.System; this.btnDetailsView.Location = new System.Drawing.Point(16, 24); this.btnDetailsView.Name = "btnDetailsView"; this.btnDetailsView.Size = new System.Drawing.Size(104, 32); this.btnDetailsView.TabIndex = 1; this.btnDetailsView.Text = "View Sample"; this.btnDetailsView.Click += new System.EventHandler(this.btnDetailsView_Click); // // groupBox3 // this.groupBox3.Controls.Add(this.button2); this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System; this.groupBox3.Location = new System.Drawing.Point(8, 88); this.groupBox3.Name = "groupBox3"; this.groupBox3.Size = new System.Drawing.Size(136, 72); this.groupBox3.TabIndex = 2; this.groupBox3.TabStop = false; this.groupBox3.Text = "Large Icon\'s View:"; // // button2 // this.button2.FlatStyle = System.Windows.Forms.FlatStyle.System; this.button2.Location = new System.Drawing.Point(16, 24); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(104, 32); this.button2.TabIndex = 1; this.button2.Text = "View Sample"; this.button2.Click += new System.EventHandler(this.button2_Click); // // btnClose // this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.System; this.btnClose.Location = new System.Drawing.Point(208, 168); this.btnClose.Name = "btnClose"; this.btnClose.TabIndex = 4; this.btnClose.Text = "Close"; this.btnClose.Click += new System.EventHandler(this.btnClose_Click); // // groupBox2 // this.groupBox2.Controls.Add(this.button1); this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System; this.groupBox2.Location = new System.Drawing.Point(152, 88); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(136, 72); this.groupBox2.TabIndex = 6; this.groupBox2.TabStop = false; this.groupBox2.Text = "Small Icon\'s View:"; // // button1 // this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System; this.button1.Location = new System.Drawing.Point(16, 24); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(104, 32); this.button1.TabIndex = 1; this.button1.Text = "View Sample"; this.button1.Click += new System.EventHandler(this.button1_Click); // // groupBox4 // this.groupBox4.Controls.Add(this.button3); this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.System; this.groupBox4.Location = new System.Drawing.Point(152, 8); this.groupBox4.Name = "groupBox4"; this.groupBox4.Size = new System.Drawing.Size(136, 72); this.groupBox4.TabIndex = 5; this.groupBox4.TabStop = false; this.groupBox4.Text = "List\'s View:"; // // button3 // this.button3.FlatStyle = System.Windows.Forms.FlatStyle.System; this.button3.Location = new System.Drawing.Point(16, 24); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(104, 32); this.button3.TabIndex = 1; this.button3.Text = "View Sample"; this.button3.Click += new System.EventHandler(this.button3_Click); // // frmMain // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(298, 197); this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox4); this.Controls.Add(this.btnClose); this.Controls.Add(this.groupBox3); this.Controls.Add(this.groupBox1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Name = "frmMain"; this.Text = "Drag And Drop Examples"; this.groupBox1.ResumeLayout(false); this.groupBox3.ResumeLayout(false); this.groupBox2.ResumeLayout(false); this.groupBox4.ResumeLayout(false); this.ResumeLayout(false); } #endregion private void btnDetailsView_Click(object sender, System.EventArgs e) { Form1 frm = new Form1(); frm.ShowDialog(this); } private void button2_Click(object sender, System.EventArgs e) { Form2 frm = new Form2(); frm.ShowDialog(this); } private void btnClose_Click(object sender, System.EventArgs e) { this.Close(); } private void button3_Click(object sender, System.EventArgs e) { Form3 frm = new Form3(); frm.ShowDialog(); } private void button1_Click(object sender, System.EventArgs e) { Form4 frm = new Form4(); frm.ShowDialog(); } } }