namespace ApplicationsSample { partial class MainForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// protected override void Dispose(bool disposing) { if( disposing && (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.applicationExitButton = new System.Windows.Forms.Button(); this.applicationThreadExitButton = new System.Windows.Forms.Button(); this.throwExceptionButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // applicationExitButton // this.applicationExitButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.applicationExitButton.Location = new System.Drawing.Point(13, 13); this.applicationExitButton.Name = "applicationExitButton"; this.applicationExitButton.Size = new System.Drawing.Size(152, 23); this.applicationExitButton.TabIndex = 0; this.applicationExitButton.Text = "Application.Exit()"; this.applicationExitButton.Click += new System.EventHandler(this.applicationExitButton_Click); // // applicationThreadExitButton // this.applicationThreadExitButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.applicationThreadExitButton.Location = new System.Drawing.Point(13, 43); this.applicationThreadExitButton.Name = "applicationThreadExitButton"; this.applicationThreadExitButton.Size = new System.Drawing.Size(152, 23); this.applicationThreadExitButton.TabIndex = 1; this.applicationThreadExitButton.Text = "Application.ThreadExit()"; this.applicationThreadExitButton.Click += new System.EventHandler(this.applicationThreadExitButton_Click); // // throwExceptionButton // this.throwExceptionButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.throwExceptionButton.Location = new System.Drawing.Point(13, 73); this.throwExceptionButton.Name = "throwExceptionButton"; this.throwExceptionButton.Size = new System.Drawing.Size(152, 23); this.throwExceptionButton.TabIndex = 2; this.throwExceptionButton.Text = "Throw Exception"; this.throwExceptionButton.Click += new System.EventHandler(this.throwExceptionButton_Click); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(177, 113); this.Controls.Add(this.throwExceptionButton); this.Controls.Add(this.applicationThreadExitButton); this.Controls.Add(this.applicationExitButton); this.Name = "MainForm"; this.Text = "Main Form"; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button applicationExitButton; private System.Windows.Forms.Button applicationThreadExitButton; private System.Windows.Forms.Button throwExceptionButton; } }