CurrencyConverter/MoneyConverter.Designer.cs

152 lines
5.6 KiB
C#

namespace CurrencyConvert
{
partial class MoneyConverter
{
private System.ComponentModel.IContainer components = null;
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()
{
comboBox1 = new ComboBox();
comboBox2 = new ComboBox();
label1 = new Label();
label2 = new Label();
textBox1 = new TextBox();
label3 = new Label();
button1 = new Button();
label4 = new Label();
SuspendLayout();
//
// comboBox1
//
comboBox1.FormattingEnabled = true;
comboBox1.Items.AddRange(new object[] { "AED ", "ARS ", "AUD ", "BGN ", "BRL ", "BSD ", "CAD ", "CHF ", "CLP ", "CNY ", "COP ", "CZK ", "DKK ", "DOP ", "EGP ", "EUR ", "FJD ", "GBP ", "GTQ ", "HKD ", "HRK ", "HUF ", "IDR ", "ILS ", "INR ", "ISK ", "JPY ", "KRW ", "KZT ", "MXN ", "MYR ", "NOK ", "NZD ", "PAB ", "PEN ", "PHP ", "PKR" });
comboBox1.Location = new Point(27, 31);
comboBox1.Name = "comboBox1";
comboBox1.Size = new Size(151, 28);
comboBox1.TabIndex = 0;
comboBox1.SelectedIndexChanged += comboBox1_SelectedIndexChanged;
//
// comboBox2
//
comboBox2.FormattingEnabled = true;
comboBox2.Items.AddRange(new object[] { "AED ", "ARS ", "AUD ", "BGN ", "BRL ", "BSD ", "CAD ", "CHF ", "CLP ", "CNY ", "COP ", "CZK ", "DKK ", "DOP ", "EGP ", "EUR ", "FJD ", "GBP ", "GTQ ", "HKD ", "HRK ", "HUF ", "IDR ", "ILS ", "INR ", "ISK ", "JPY ", "KRW ", "KZT ", "MXN ", "MYR ", "NOK ", "NZD ", "PAB ", "PEN ", "PHP ", "PKR" });
comboBox2.Location = new Point(27, 79);
comboBox2.Name = "comboBox2";
comboBox2.Size = new Size(151, 28);
comboBox2.TabIndex = 1;
//
// label1
//
label1.AutoSize = true;
label1.BackColor = Color.Transparent;
label1.Location = new Point(184, 34);
label1.Name = "label1";
label1.Size = new Size(97, 20);
label1.TabIndex = 2;
label1.Text = "Von Währung";
//
// label2
//
label2.AutoSize = true;
label2.BackColor = Color.Transparent;
label2.Location = new Point(184, 82);
label2.Name = "label2";
label2.Size = new Size(89, 20);
label2.TabIndex = 3;
label2.Text = "Zu Währung";
//
// textBox1
//
textBox1.Location = new Point(27, 129);
textBox1.Name = "textBox1";
textBox1.Size = new Size(151, 27);
textBox1.TabIndex = 4;
textBox1.KeyPress += textBox1_KeyPress;
//
// label3
//
label3.AutoSize = true;
label3.BackColor = Color.Transparent;
label3.Location = new Point(184, 132);
label3.Name = "label3";
label3.Size = new Size(144, 20);
label3.TabIndex = 5;
label3.Text = "Menge der Währung";
label3.Click += label3_Click;
//
// button1
//
button1.Font = new Font("Segoe UI", 9F, FontStyle.Bold);
button1.ForeColor = Color.BlanchedAlmond;
button1.Image = Properties.Resources.Euro1;
button1.Location = new Point(27, 177);
button1.Name = "button1";
button1.Size = new Size(151, 47);
button1.TabIndex = 6;
button1.Text = "Umrechnen";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// label4
//
label4.AutoSize = true;
label4.BackColor = Color.Transparent;
label4.Location = new Point(28, 263);
label4.Name = "label4";
label4.Size = new Size(66, 20);
label4.TabIndex = 7;
label4.Text = "Ergebnis";
//
// MoneyConverter
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = SystemColors.HighlightText;
BackgroundImage = Properties.Resources.Background;
ClientSize = new Size(366, 328);
Controls.Add(label4);
Controls.Add(button1);
Controls.Add(label3);
Controls.Add(textBox1);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(comboBox2);
Controls.Add(comboBox1);
Name = "MoneyConverter";
Text = "MoneyConverter";
Load += Form1_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private ComboBox comboBox1;
private ComboBox comboBox2;
private Label label1;
private Label label2;
private TextBox textBox1;
private Label label3;
private Button button1;
private Label label4;
}
}