Advertisement
coasterka

CurrencyConverterDesigner

Apr 1st, 2014
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 9.48 KB | None | 0 0
  1. namespace CurrencyConverter
  2. {
  3.     partial class CurrencyConverter
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.  
  10.         /// <summary>
  11.         /// Clean up any resources being used.
  12.         /// </summary>
  13.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14.         protected override void Dispose(bool disposing)
  15.         {
  16.             if (disposing && (components != null))
  17.             {
  18.                 components.Dispose();
  19.             }
  20.             base.Dispose(disposing);
  21.         }
  22.  
  23.         #region Windows Form Designer generated code
  24.  
  25.         /// <summary>
  26.         /// Required method for Designer support - do not modify
  27.         /// the contents of this method with the code editor.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             this.label1 = new System.Windows.Forms.Label();
  32.             this.textBox1 = new System.Windows.Forms.TextBox();
  33.             this.label2 = new System.Windows.Forms.Label();
  34.             this.comboBox1 = new System.Windows.Forms.ComboBox();
  35.             this.groupBox1 = new System.Windows.Forms.GroupBox();
  36.             this.label3 = new System.Windows.Forms.Label();
  37.             this.label4 = new System.Windows.Forms.Label();
  38.             this.label5 = new System.Windows.Forms.Label();
  39.             this.label6 = new System.Windows.Forms.Label();
  40.             this.textBox2 = new System.Windows.Forms.TextBox();
  41.             this.textBox3 = new System.Windows.Forms.TextBox();
  42.             this.textBox4 = new System.Windows.Forms.TextBox();
  43.             this.textBox5 = new System.Windows.Forms.TextBox();
  44.             this.button1 = new System.Windows.Forms.Button();
  45.             this.button2 = new System.Windows.Forms.Button();
  46.             this.groupBox1.SuspendLayout();
  47.             this.SuspendLayout();
  48.             //
  49.             // label1
  50.             //
  51.             this.label1.AutoSize = true;
  52.             this.label1.Location = new System.Drawing.Point(10, 13);
  53.             this.label1.Name = "label1";
  54.             this.label1.Size = new System.Drawing.Size(33, 13);
  55.             this.label1.TabIndex = 0;
  56.             this.label1.Text = "Сума";
  57.             //
  58.             // textBox1
  59.             //
  60.             this.textBox1.Location = new System.Drawing.Point(13, 30);
  61.             this.textBox1.Name = "textBox1";
  62.             this.textBox1.Size = new System.Drawing.Size(140, 20);
  63.             this.textBox1.TabIndex = 1;
  64.             this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  65.             //
  66.             // label2
  67.             //
  68.             this.label2.AutoSize = true;
  69.             this.label2.Location = new System.Drawing.Point(156, 13);
  70.             this.label2.Name = "label2";
  71.             this.label2.Size = new System.Drawing.Size(42, 13);
  72.             this.label2.TabIndex = 2;
  73.             this.label2.Text = "Валута";
  74.             //
  75.             // comboBox1
  76.             //
  77.             this.comboBox1.FormattingEnabled = true;
  78.             this.comboBox1.Items.AddRange(new object[] {
  79.             "BGN",
  80.             "EUR",
  81.             "USD",
  82.             "GBP"});
  83.             this.comboBox1.Location = new System.Drawing.Point(159, 29);
  84.             this.comboBox1.Name = "comboBox1";
  85.             this.comboBox1.Size = new System.Drawing.Size(113, 21);
  86.             this.comboBox1.TabIndex = 3;
  87.             this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
  88.             //
  89.             // groupBox1
  90.             //
  91.             this.groupBox1.Controls.Add(this.textBox5);
  92.             this.groupBox1.Controls.Add(this.textBox4);
  93.             this.groupBox1.Controls.Add(this.textBox3);
  94.             this.groupBox1.Controls.Add(this.textBox2);
  95.             this.groupBox1.Controls.Add(this.label6);
  96.             this.groupBox1.Controls.Add(this.label5);
  97.             this.groupBox1.Controls.Add(this.label4);
  98.             this.groupBox1.Controls.Add(this.label3);
  99.             this.groupBox1.Location = new System.Drawing.Point(13, 113);
  100.             this.groupBox1.Name = "groupBox1";
  101.             this.groupBox1.Size = new System.Drawing.Size(259, 137);
  102.             this.groupBox1.TabIndex = 4;
  103.             this.groupBox1.TabStop = false;
  104.             this.groupBox1.Text = "Резултат";
  105.             //
  106.             // label3
  107.             //
  108.             this.label3.AutoSize = true;
  109.             this.label3.Location = new System.Drawing.Point(7, 29);
  110.             this.label3.Name = "label3";
  111.             this.label3.Size = new System.Drawing.Size(30, 13);
  112.             this.label3.TabIndex = 0;
  113.             this.label3.Text = "BGN";
  114.             //
  115.             // label4
  116.             //
  117.             this.label4.AutoSize = true;
  118.             this.label4.Location = new System.Drawing.Point(7, 55);
  119.             this.label4.Name = "label4";
  120.             this.label4.Size = new System.Drawing.Size(30, 13);
  121.             this.label4.TabIndex = 1;
  122.             this.label4.Text = "EUR";
  123.             //
  124.             // label5
  125.             //
  126.             this.label5.AutoSize = true;
  127.             this.label5.Location = new System.Drawing.Point(7, 82);
  128.             this.label5.Name = "label5";
  129.             this.label5.Size = new System.Drawing.Size(30, 13);
  130.             this.label5.TabIndex = 2;
  131.             this.label5.Text = "USD";
  132.             //
  133.             // label6
  134.             //
  135.             this.label6.AutoSize = true;
  136.             this.label6.Location = new System.Drawing.Point(7, 107);
  137.             this.label6.Name = "label6";
  138.             this.label6.Size = new System.Drawing.Size(29, 13);
  139.             this.label6.TabIndex = 3;
  140.             this.label6.Text = "GBP";
  141.             //
  142.             // textBox2
  143.             //
  144.             this.textBox2.Location = new System.Drawing.Point(79, 26);
  145.             this.textBox2.Name = "textBox2";
  146.             this.textBox2.Size = new System.Drawing.Size(149, 20);
  147.             this.textBox2.TabIndex = 4;
  148.             //
  149.             // textBox3
  150.             //
  151.             this.textBox3.Location = new System.Drawing.Point(78, 52);
  152.             this.textBox3.Name = "textBox3";
  153.             this.textBox3.Size = new System.Drawing.Size(150, 20);
  154.             this.textBox3.TabIndex = 5;
  155.             //
  156.             // textBox4
  157.             //
  158.             this.textBox4.Location = new System.Drawing.Point(78, 79);
  159.             this.textBox4.Name = "textBox4";
  160.             this.textBox4.Size = new System.Drawing.Size(150, 20);
  161.             this.textBox4.TabIndex = 6;
  162.             //
  163.             // textBox5
  164.             //
  165.             this.textBox5.Location = new System.Drawing.Point(77, 104);
  166.             this.textBox5.Name = "textBox5";
  167.             this.textBox5.Size = new System.Drawing.Size(151, 20);
  168.             this.textBox5.TabIndex = 7;
  169.             //
  170.             // button1
  171.             //
  172.             this.button1.Location = new System.Drawing.Point(53, 72);
  173.             this.button1.Name = "button1";
  174.             this.button1.Size = new System.Drawing.Size(75, 23);
  175.             this.button1.TabIndex = 5;
  176.             this.button1.Text = "Изчисли";
  177.             this.button1.UseVisualStyleBackColor = true;
  178.             this.button1.Click += new System.EventHandler(this.button1_Click);
  179.             //
  180.             // button2
  181.             //
  182.             this.button2.Location = new System.Drawing.Point(149, 72);
  183.             this.button2.Name = "button2";
  184.             this.button2.Size = new System.Drawing.Size(75, 23);
  185.             this.button2.TabIndex = 6;
  186.             this.button2.Text = "Изчисти";
  187.             this.button2.UseVisualStyleBackColor = true;
  188.             //
  189.             // CurrencyConverter
  190.             //
  191.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  192.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  193.             this.ClientSize = new System.Drawing.Size(284, 262);
  194.             this.Controls.Add(this.button2);
  195.             this.Controls.Add(this.button1);
  196.             this.Controls.Add(this.groupBox1);
  197.             this.Controls.Add(this.comboBox1);
  198.             this.Controls.Add(this.label2);
  199.             this.Controls.Add(this.textBox1);
  200.             this.Controls.Add(this.label1);
  201.             this.Name = "CurrencyConverter";
  202.             this.Text = "Конвертор на валути";
  203.             this.groupBox1.ResumeLayout(false);
  204.             this.groupBox1.PerformLayout();
  205.             this.ResumeLayout(false);
  206.             this.PerformLayout();
  207.  
  208.         }
  209.  
  210.         #endregion
  211.  
  212.         private System.Windows.Forms.Label label1;
  213.         private System.Windows.Forms.TextBox textBox1;
  214.         private System.Windows.Forms.Label label2;
  215.         private System.Windows.Forms.ComboBox comboBox1;
  216.         private System.Windows.Forms.GroupBox groupBox1;
  217.         private System.Windows.Forms.TextBox textBox5;
  218.         private System.Windows.Forms.TextBox textBox4;
  219.         private System.Windows.Forms.TextBox textBox3;
  220.         private System.Windows.Forms.TextBox textBox2;
  221.         private System.Windows.Forms.Label label6;
  222.         private System.Windows.Forms.Label label5;
  223.         private System.Windows.Forms.Label label4;
  224.         private System.Windows.Forms.Label label3;
  225.         private System.Windows.Forms.Button button1;
  226.         private System.Windows.Forms.Button button2;
  227.     }
  228. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement