Add project files.
This commit is contained in:
111
Form1.Designer.cs
generated
Normal file
111
Form1.Designer.cs
generated
Normal file
@@ -0,0 +1,111 @@
|
||||
namespace Graphics
|
||||
{
|
||||
partial class Form1
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user