Advertisement
DoctorWhoo

Form1 Designer.cs

Jan 2nd, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 13.04 KB | None | 0 0
  1. namespace Banco
  2. {
  3.     partial class Form1
  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.TextoTitular = new System.Windows.Forms.TextBox();
  32.             this.TextoNumero = new System.Windows.Forms.MaskedTextBox();
  33.             this.TextoSaldo = new System.Windows.Forms.MaskedTextBox();
  34.             this.label2 = new System.Windows.Forms.Label();
  35.             this.label3 = new System.Windows.Forms.Label();
  36.             this.label4 = new System.Windows.Forms.Label();
  37.             this.TextoValor = new System.Windows.Forms.TextBox();
  38.             this.label6 = new System.Windows.Forms.Label();
  39.             this.BotaoDeposito = new System.Windows.Forms.Button();
  40.             this.BotaoSaque = new System.Windows.Forms.Button();
  41.             this.groupBox1 = new System.Windows.Forms.GroupBox();
  42.             this.groupBox3 = new System.Windows.Forms.GroupBox();
  43.             this.label5 = new System.Windows.Forms.Label();
  44.             this.label1 = new System.Windows.Forms.Label();
  45.             this.DestinoTransfBox = new System.Windows.Forms.ComboBox();
  46.             this.ValorTransferencia = new System.Windows.Forms.TextBox();
  47.             this.BotaoTransferir = new System.Windows.Forms.Button();
  48.             this.groupBox2 = new System.Windows.Forms.GroupBox();
  49.             this.ComboContas = new System.Windows.Forms.ComboBox();
  50.             this.BotaoNovaAcc = new System.Windows.Forms.Button();
  51.             this.groupBox1.SuspendLayout();
  52.             this.groupBox3.SuspendLayout();
  53.             this.groupBox2.SuspendLayout();
  54.             this.SuspendLayout();
  55.             //
  56.             // TextoTitular
  57.             //
  58.             this.TextoTitular.Location = new System.Drawing.Point(129, 86);
  59.             this.TextoTitular.Name = "TextoTitular";
  60.             this.TextoTitular.Size = new System.Drawing.Size(100, 20);
  61.             this.TextoTitular.TabIndex = 0;
  62.             //
  63.             // TextoNumero
  64.             //
  65.             this.TextoNumero.Location = new System.Drawing.Point(129, 112);
  66.             this.TextoNumero.Name = "TextoNumero";
  67.             this.TextoNumero.Size = new System.Drawing.Size(100, 20);
  68.             this.TextoNumero.TabIndex = 1;
  69.             //
  70.             // TextoSaldo
  71.             //
  72.             this.TextoSaldo.Location = new System.Drawing.Point(129, 138);
  73.             this.TextoSaldo.Name = "TextoSaldo";
  74.             this.TextoSaldo.Size = new System.Drawing.Size(100, 20);
  75.             this.TextoSaldo.TabIndex = 2;
  76.             //
  77.             // label2
  78.             //
  79.             this.label2.AutoSize = true;
  80.             this.label2.Location = new System.Drawing.Point(38, 89);
  81.             this.label2.Name = "label2";
  82.             this.label2.Size = new System.Drawing.Size(85, 13);
  83.             this.label2.TabIndex = 4;
  84.             this.label2.Text = "Nome do Cliente";
  85.             //
  86.             // label3
  87.             //
  88.             this.label3.AutoSize = true;
  89.             this.label3.Location = new System.Drawing.Point(33, 115);
  90.             this.label3.Name = "label3";
  91.             this.label3.Size = new System.Drawing.Size(90, 13);
  92.             this.label3.TabIndex = 5;
  93.             this.label3.Text = "Numero da Conta";
  94.             //
  95.             // label4
  96.             //
  97.             this.label4.AutoSize = true;
  98.             this.label4.Location = new System.Drawing.Point(89, 141);
  99.             this.label4.Name = "label4";
  100.             this.label4.Size = new System.Drawing.Size(34, 13);
  101.             this.label4.TabIndex = 6;
  102.             this.label4.Text = "Saldo";
  103.             //
  104.             // TextoValor
  105.             //
  106.             this.TextoValor.Location = new System.Drawing.Point(129, 164);
  107.             this.TextoValor.Name = "TextoValor";
  108.             this.TextoValor.Size = new System.Drawing.Size(100, 20);
  109.             this.TextoValor.TabIndex = 7;
  110.             //
  111.             // label6
  112.             //
  113.             this.label6.AutoSize = true;
  114.             this.label6.Location = new System.Drawing.Point(11, 167);
  115.             this.label6.Name = "label6";
  116.             this.label6.Size = new System.Drawing.Size(112, 13);
  117.             this.label6.TabIndex = 9;
  118.             this.label6.Text = "Valor Saque/Deposito";
  119.             //
  120.             // BotaoDeposito
  121.             //
  122.             this.BotaoDeposito.Location = new System.Drawing.Point(23, 190);
  123.             this.BotaoDeposito.Name = "BotaoDeposito";
  124.             this.BotaoDeposito.Size = new System.Drawing.Size(100, 23);
  125.             this.BotaoDeposito.TabIndex = 10;
  126.             this.BotaoDeposito.Text = "Deposito";
  127.             this.BotaoDeposito.UseVisualStyleBackColor = true;
  128.             this.BotaoDeposito.Click += new System.EventHandler(this.BotaoDeposito_Click);
  129.             //
  130.             // BotaoSaque
  131.             //
  132.             this.BotaoSaque.Location = new System.Drawing.Point(129, 190);
  133.             this.BotaoSaque.Name = "BotaoSaque";
  134.             this.BotaoSaque.Size = new System.Drawing.Size(100, 23);
  135.             this.BotaoSaque.TabIndex = 11;
  136.             this.BotaoSaque.Text = "Saque";
  137.             this.BotaoSaque.UseVisualStyleBackColor = true;
  138.             this.BotaoSaque.Click += new System.EventHandler(this.BotaoSaque_Click);
  139.             //
  140.             // groupBox1
  141.             //
  142.             this.groupBox1.Controls.Add(this.groupBox3);
  143.             this.groupBox1.Location = new System.Drawing.Point(4, 74);
  144.             this.groupBox1.Name = "groupBox1";
  145.             this.groupBox1.Size = new System.Drawing.Size(233, 247);
  146.             this.groupBox1.TabIndex = 12;
  147.             this.groupBox1.TabStop = false;
  148.             this.groupBox1.Text = "Conta";
  149.             //
  150.             // groupBox3
  151.             //
  152.             this.groupBox3.Controls.Add(this.label5);
  153.             this.groupBox3.Controls.Add(this.label1);
  154.             this.groupBox3.Controls.Add(this.DestinoTransfBox);
  155.             this.groupBox3.Controls.Add(this.ValorTransferencia);
  156.             this.groupBox3.Controls.Add(this.BotaoTransferir);
  157.             this.groupBox3.Location = new System.Drawing.Point(6, 145);
  158.             this.groupBox3.Name = "groupBox3";
  159.             this.groupBox3.Size = new System.Drawing.Size(219, 96);
  160.             this.groupBox3.TabIndex = 0;
  161.             this.groupBox3.TabStop = false;
  162.             this.groupBox3.Text = "Transferencia";
  163.             //
  164.             // label5
  165.             //
  166.             this.label5.AutoSize = true;
  167.             this.label5.Location = new System.Drawing.Point(6, 53);
  168.             this.label5.Name = "label5";
  169.             this.label5.Size = new System.Drawing.Size(31, 13);
  170.             this.label5.TabIndex = 4;
  171.             this.label5.Text = "Valor";
  172.             //
  173.             // label1
  174.             //
  175.             this.label1.AutoSize = true;
  176.             this.label1.Location = new System.Drawing.Point(6, 16);
  177.             this.label1.Name = "label1";
  178.             this.label1.Size = new System.Drawing.Size(29, 13);
  179.             this.label1.TabIndex = 3;
  180.             this.label1.Text = "Para";
  181.             //
  182.             // DestinoTransfBox
  183.             //
  184.             this.DestinoTransfBox.FormattingEnabled = true;
  185.             this.DestinoTransfBox.Location = new System.Drawing.Point(6, 29);
  186.             this.DestinoTransfBox.Name = "DestinoTransfBox";
  187.             this.DestinoTransfBox.Size = new System.Drawing.Size(126, 21);
  188.             this.DestinoTransfBox.TabIndex = 2;
  189.             this.DestinoTransfBox.SelectedIndexChanged += new System.EventHandler(this.DestinoTransfBox_SelectedIndexChanged);
  190.             //
  191.             // ValorTransferencia
  192.             //
  193.             this.ValorTransferencia.Location = new System.Drawing.Point(6, 67);
  194.             this.ValorTransferencia.Name = "ValorTransferencia";
  195.             this.ValorTransferencia.Size = new System.Drawing.Size(126, 20);
  196.             this.ValorTransferencia.TabIndex = 1;
  197.             //
  198.             // BotaoTransferir
  199.             //
  200.             this.BotaoTransferir.Location = new System.Drawing.Point(138, 29);
  201.             this.BotaoTransferir.Name = "BotaoTransferir";
  202.             this.BotaoTransferir.Size = new System.Drawing.Size(75, 61);
  203.             this.BotaoTransferir.TabIndex = 0;
  204.             this.BotaoTransferir.Text = "Transferir";
  205.             this.BotaoTransferir.UseVisualStyleBackColor = true;
  206.             this.BotaoTransferir.Click += new System.EventHandler(this.BotaoTransferir_Click);
  207.             //
  208.             // groupBox2
  209.             //
  210.             this.groupBox2.Controls.Add(this.ComboContas);
  211.             this.groupBox2.Location = new System.Drawing.Point(4, 3);
  212.             this.groupBox2.Name = "groupBox2";
  213.             this.groupBox2.Size = new System.Drawing.Size(233, 65);
  214.             this.groupBox2.TabIndex = 13;
  215.             this.groupBox2.TabStop = false;
  216.             this.groupBox2.Text = "Buscar Conta";
  217.             //
  218.             // ComboContas
  219.             //
  220.             this.ComboContas.FormattingEnabled = true;
  221.             this.ComboContas.Location = new System.Drawing.Point(6, 30);
  222.             this.ComboContas.Name = "ComboContas";
  223.             this.ComboContas.Size = new System.Drawing.Size(219, 21);
  224.             this.ComboContas.TabIndex = 2;
  225.             this.ComboContas.SelectedIndexChanged += new System.EventHandler(this.ComboContas_SelectedIndexChanged);
  226.             //
  227.             // BotaoNovaAcc
  228.             //
  229.             this.BotaoNovaAcc.Location = new System.Drawing.Point(4, 327);
  230.             this.BotaoNovaAcc.Name = "BotaoNovaAcc";
  231.             this.BotaoNovaAcc.Size = new System.Drawing.Size(225, 23);
  232.             this.BotaoNovaAcc.TabIndex = 14;
  233.             this.BotaoNovaAcc.Text = "Nova Conta";
  234.             this.BotaoNovaAcc.UseVisualStyleBackColor = true;
  235.             this.BotaoNovaAcc.Click += new System.EventHandler(this.BotaoNovaAcc_Click);
  236.             //
  237.             // Form1
  238.             //
  239.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  240.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  241.             this.ClientSize = new System.Drawing.Size(241, 361);
  242.             this.Controls.Add(this.BotaoNovaAcc);
  243.             this.Controls.Add(this.groupBox2);
  244.             this.Controls.Add(this.BotaoSaque);
  245.             this.Controls.Add(this.BotaoDeposito);
  246.             this.Controls.Add(this.label6);
  247.             this.Controls.Add(this.TextoValor);
  248.             this.Controls.Add(this.label4);
  249.             this.Controls.Add(this.label3);
  250.             this.Controls.Add(this.label2);
  251.             this.Controls.Add(this.TextoSaldo);
  252.             this.Controls.Add(this.TextoNumero);
  253.             this.Controls.Add(this.TextoTitular);
  254.             this.Controls.Add(this.groupBox1);
  255.             this.Name = "Form1";
  256.             this.Text = "Banco";
  257.             this.Load += new System.EventHandler(this.Form1_Load);
  258.             this.groupBox1.ResumeLayout(false);
  259.             this.groupBox3.ResumeLayout(false);
  260.             this.groupBox3.PerformLayout();
  261.             this.groupBox2.ResumeLayout(false);
  262.             this.ResumeLayout(false);
  263.             this.PerformLayout();
  264.  
  265.         }
  266.  
  267.         #endregion
  268.  
  269.         private System.Windows.Forms.TextBox TextoTitular;
  270.         private System.Windows.Forms.MaskedTextBox TextoNumero;
  271.         private System.Windows.Forms.MaskedTextBox TextoSaldo;
  272.         private System.Windows.Forms.Label label2;
  273.         private System.Windows.Forms.Label label3;
  274.         private System.Windows.Forms.Label label4;
  275.         private System.Windows.Forms.TextBox TextoValor;
  276.         private System.Windows.Forms.Label label6;
  277.         private System.Windows.Forms.Button BotaoDeposito;
  278.         private System.Windows.Forms.Button BotaoSaque;
  279.         private System.Windows.Forms.GroupBox groupBox1;
  280.         private System.Windows.Forms.GroupBox groupBox2;
  281.         private System.Windows.Forms.ComboBox ComboContas;
  282.         private System.Windows.Forms.GroupBox groupBox3;
  283.         private System.Windows.Forms.Label label5;
  284.         private System.Windows.Forms.Label label1;
  285.         private System.Windows.Forms.ComboBox DestinoTransfBox;
  286.         private System.Windows.Forms.TextBox ValorTransferencia;
  287.         private System.Windows.Forms.Button BotaoTransferir;
  288.         private System.Windows.Forms.Button BotaoNovaAcc;
  289.     }
  290. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement