www.pudn.com > UptoLog_SomeTestApplication.zip > SomeForm.Designer.cs


namespace SomeWindowsApplication 
{ 
    partial class SomeForm 
    { 
        ///  
        /// Required designer variable. 
        ///  
        private System.ComponentModel.IContainer components = null; 
 
        ///  
        /// Clean up any resources being used. 
        ///  
        /// true if managed resources should be disposed; otherwise, false. 
        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.components = new System.ComponentModel.Container(); 
            this.ShowSomeDataWithException = new System.Windows.Forms.Button(); 
            this.ShowSomeData = new System.Windows.Forms.Button(); 
            this.Result = new System.Windows.Forms.Label(); 
            this.groupBox1 = new System.Windows.Forms.GroupBox(); 
            this.ValidationErrorAsError = new System.Windows.Forms.RadioButton(); 
            this.ValidationErrorAsWarning = new System.Windows.Forms.RadioButton(); 
            this.label1 = new System.Windows.Forms.Label(); 
            this.validate = new System.Windows.Forms.Button(); 
            this.TextToValidate = new System.Windows.Forms.TextBox(); 
            this.validateErrorProvider = new System.Windows.Forms.ErrorProvider(this.components); 
            this.groupBox1.SuspendLayout(); 
            ((System.ComponentModel.ISupportInitialize)(this.validateErrorProvider)).BeginInit(); 
            this.SuspendLayout(); 
            //  
            // ShowSomeDataWithException 
            //  
            this.ShowSomeDataWithException.Location = new System.Drawing.Point(12, 74); 
            this.ShowSomeDataWithException.Name = "ShowSomeDataWithException"; 
            this.ShowSomeDataWithException.Size = new System.Drawing.Size(224, 23); 
            this.ShowSomeDataWithException.TabIndex = 0; 
            this.ShowSomeDataWithException.Text = "Show some data with exception"; 
            this.ShowSomeDataWithException.UseVisualStyleBackColor = true; 
            this.ShowSomeDataWithException.Click += new System.EventHandler(this.ShowSomeDataWithException_Click); 
            //  
            // ShowSomeData 
            //  
            this.ShowSomeData.Location = new System.Drawing.Point(12, 23); 
            this.ShowSomeData.Name = "ShowSomeData"; 
            this.ShowSomeData.Size = new System.Drawing.Size(165, 23); 
            this.ShowSomeData.TabIndex = 0; 
            this.ShowSomeData.Text = "Show some data"; 
            this.ShowSomeData.UseVisualStyleBackColor = true; 
            this.ShowSomeData.Click += new System.EventHandler(this.ShowSomeData_Click); 
            //  
            // Result 
            //  
            this.Result.AutoSize = true; 
            this.Result.Location = new System.Drawing.Point(183, 33); 
            this.Result.Name = "Result"; 
            this.Result.Size = new System.Drawing.Size(0, 13); 
            this.Result.TabIndex = 1; 
            //  
            // groupBox1 
            //  
            this.groupBox1.Controls.Add(this.ValidationErrorAsError); 
            this.groupBox1.Controls.Add(this.ValidationErrorAsWarning); 
            this.groupBox1.Controls.Add(this.label1); 
            this.groupBox1.Controls.Add(this.validate); 
            this.groupBox1.Controls.Add(this.TextToValidate); 
            this.groupBox1.Location = new System.Drawing.Point(12, 135); 
            this.groupBox1.Name = "groupBox1"; 
            this.groupBox1.Size = new System.Drawing.Size(335, 137); 
            this.groupBox1.TabIndex = 2; 
            this.groupBox1.TabStop = false; 
            this.groupBox1.Text = "E-mail validation"; 
            //  
            // ValidationErrorAsError 
            //  
            this.ValidationErrorAsError.AutoSize = true; 
            this.ValidationErrorAsError.Location = new System.Drawing.Point(7, 103); 
            this.ValidationErrorAsError.Name = "ValidationErrorAsError"; 
            this.ValidationErrorAsError.Size = new System.Drawing.Size(179, 17); 
            this.ValidationErrorAsError.TabIndex = 4; 
            this.ValidationErrorAsError.Text = "Log validation exception as Error"; 
            this.ValidationErrorAsError.UseVisualStyleBackColor = true; 
            //  
            // ValidationErrorAsWarning 
            //  
            this.ValidationErrorAsWarning.AutoSize = true; 
            this.ValidationErrorAsWarning.Checked = true; 
            this.ValidationErrorAsWarning.Location = new System.Drawing.Point(7, 79); 
            this.ValidationErrorAsWarning.Name = "ValidationErrorAsWarning"; 
            this.ValidationErrorAsWarning.Size = new System.Drawing.Size(197, 17); 
            this.ValidationErrorAsWarning.TabIndex = 3; 
            this.ValidationErrorAsWarning.TabStop = true; 
            this.ValidationErrorAsWarning.Text = "Log validation exception as Warning"; 
            this.ValidationErrorAsWarning.UseVisualStyleBackColor = true; 
            //  
            // label1 
            //  
            this.label1.AutoSize = true; 
            this.label1.Location = new System.Drawing.Point(3, 25); 
            this.label1.Name = "label1"; 
            this.label1.Size = new System.Drawing.Size(325, 13); 
            this.label1.TabIndex = 2; 
            this.label1.Text = "Type an e-mail address or something else to generate an exception."; 
            //  
            // validate 
            //  
            this.validate.Location = new System.Drawing.Point(243, 50); 
            this.validate.Name = "validate"; 
            this.validate.Size = new System.Drawing.Size(85, 23); 
            this.validate.TabIndex = 1; 
            this.validate.Text = "Validate"; 
            this.validate.UseVisualStyleBackColor = true; 
            this.validate.Click += new System.EventHandler(this.Validate_Click); 
            //  
            // TextToValidate 
            //  
            this.TextToValidate.Location = new System.Drawing.Point(6, 52); 
            this.TextToValidate.Name = "TextToValidate"; 
            this.TextToValidate.Size = new System.Drawing.Size(218, 20); 
            this.TextToValidate.TabIndex = 0; 
            //  
            // validateErrorProvider 
            //  
            this.validateErrorProvider.ContainerControl = this; 
            //  
            // SomeForm 
            //  
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 
            this.ClientSize = new System.Drawing.Size(359, 283); 
            this.Controls.Add(this.groupBox1); 
            this.Controls.Add(this.Result); 
            this.Controls.Add(this.ShowSomeData); 
            this.Controls.Add(this.ShowSomeDataWithException); 
            this.Name = "SomeForm"; 
            this.Text = "SomeForm"; 
            this.groupBox1.ResumeLayout(false); 
            this.groupBox1.PerformLayout(); 
            ((System.ComponentModel.ISupportInitialize)(this.validateErrorProvider)).EndInit(); 
            this.ResumeLayout(false); 
            this.PerformLayout(); 
 
        } 
 
        #endregion 
 
        private System.Windows.Forms.Button ShowSomeDataWithException; 
        private System.Windows.Forms.Button ShowSomeData; 
        private System.Windows.Forms.Label Result; 
        private System.Windows.Forms.GroupBox groupBox1; 
        private System.Windows.Forms.Label label1; 
        private System.Windows.Forms.Button validate; 
        private System.Windows.Forms.TextBox TextToValidate; 
        private System.Windows.Forms.RadioButton ValidationErrorAsError; 
        private System.Windows.Forms.RadioButton ValidationErrorAsWarning; 
        private System.Windows.Forms.ErrorProvider validateErrorProvider; 
    } 
}