namespace Graphics { partial class Form1 { /// /// 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() { btn_finland = new Button(); btn_sverige = new Button(); btn_danmark = new Button(); label1 = new Label(); numericUpDown1 = new NumericUpDown(); ((System.ComponentModel.ISupportInitialize)numericUpDown1).BeginInit(); SuspendLayout(); // // btn_finland // btn_finland.Location = new Point(26, 26); btn_finland.Name = "btn_finland"; btn_finland.Size = new Size(112, 34); btn_finland.TabIndex = 0; btn_finland.Text = "Finland"; btn_finland.UseVisualStyleBackColor = true; btn_finland.Click += btn_finland_Click; // // btn_sverige // btn_sverige.Location = new Point(262, 26); btn_sverige.Name = "btn_sverige"; btn_sverige.Size = new Size(112, 34); btn_sverige.TabIndex = 1; btn_sverige.Text = "Sverige"; btn_sverige.UseVisualStyleBackColor = true; btn_sverige.Click += btn_sverige_Click; // // btn_danmark // btn_danmark.Location = new Point(144, 26); btn_danmark.Name = "btn_danmark"; btn_danmark.Size = new Size(112, 34); btn_danmark.TabIndex = 2; btn_danmark.Text = "Danmark"; btn_danmark.UseVisualStyleBackColor = true; btn_danmark.Click += btn_danmark_Click; // // label1 // label1.AutoSize = true; label1.Location = new Point(400, 31); label1.Name = "label1"; label1.Size = new Size(70, 25); label1.TabIndex = 3; label1.Text = "Storlek:"; // // numericUpDown1 // numericUpDown1.Location = new Point(476, 29); numericUpDown1.Name = "numericUpDown1"; numericUpDown1.Size = new Size(180, 31); numericUpDown1.TabIndex = 5; numericUpDown1.ValueChanged += numericUpDown1_ValueChanged; // // Form1 // AutoScaleDimensions = new SizeF(10F, 25F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(793, 454); Controls.Add(numericUpDown1); Controls.Add(label1); Controls.Add(btn_danmark); Controls.Add(btn_sverige); Controls.Add(btn_finland); Name = "Form1"; Text = "Flaggor"; ((System.ComponentModel.ISupportInitialize)numericUpDown1).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private Button btn_finland; private Button btn_sverige; private Button btn_danmark; private Label label1; private NumericUpDown numericUpDown1; } }