/* * Original Author: Chris Tomich * Web Site: http://mymemorysucks.com * Released into the public domain on the 2nd August, 2009 6:30PM +8:00 GMT. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ namespace MyMemorySucks.IoCContainer { partial class IoCContainerUsageExample { /// /// 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.uxClickMe = new System.Windows.Forms.Button(); this.uxMessageWindow = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // uxClickMe // this.uxClickMe.Location = new System.Drawing.Point(109, 38); this.uxClickMe.Name = "uxClickMe"; this.uxClickMe.Size = new System.Drawing.Size(75, 23); this.uxClickMe.TabIndex = 0; this.uxClickMe.Text = "Click Me"; this.uxClickMe.UseVisualStyleBackColor = true; this.uxClickMe.Click += new System.EventHandler(this.uxClickMe_Click); // // uxMessageWindow // this.uxMessageWindow.Location = new System.Drawing.Point(12, 12); this.uxMessageWindow.Name = "uxMessageWindow"; this.uxMessageWindow.Size = new System.Drawing.Size(259, 20); this.uxMessageWindow.TabIndex = 1; // // IoCContainerUsageExample // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(283, 70); this.Controls.Add(this.uxMessageWindow); this.Controls.Add(this.uxClickMe); this.Name = "IoCContainerUsageExample"; this.Text = "IoCContainer Usage Example"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button uxClickMe; private System.Windows.Forms.TextBox uxMessageWindow; } }