namespace SushiBarView { partial class FormComponent { /// /// 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormComponent)); label1 = new Label(); textBoxName = new TextBox(); textBoxCost = new TextBox(); label2 = new Label(); buttonSave = new Button(); buttonCancel = new Button(); SuspendLayout(); // // label1 // resources.ApplyResources(label1, "label1"); label1.Name = "label1"; // // textBoxName // resources.ApplyResources(textBoxName, "textBoxName"); textBoxName.Name = "textBoxName"; // // textBoxCost // resources.ApplyResources(textBoxCost, "textBoxCost"); textBoxCost.Name = "textBoxCost"; // // label2 // resources.ApplyResources(label2, "label2"); label2.Name = "label2"; // // buttonSave // resources.ApplyResources(buttonSave, "buttonSave"); buttonSave.Name = "buttonSave"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // resources.ApplyResources(buttonCancel, "buttonCancel"); buttonCancel.Name = "buttonCancel"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // FormComponent // resources.ApplyResources(this, "$this"); AutoScaleMode = AutoScaleMode.Font; Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxCost); Controls.Add(label2); Controls.Add(textBoxName); Controls.Add(label1); Name = "FormComponent"; ResumeLayout(false); PerformLayout(); } #endregion private Label label1; private TextBox textBoxName; private TextBox textBoxCost; private Label label2; private Button buttonSave; private Button buttonCancel; } }