DoctorWhoo

Form2 Designer.cs

Jan 2nd, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.81 KB | None | 0 0
  1. namespace Banco
  2. {
  3.     partial class Form2
  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.TextNovoNumero = new System.Windows.Forms.TextBox();
  32.             this.TextNovoNome = new System.Windows.Forms.TextBox();
  33.             this.BotaoCriar = new System.Windows.Forms.Button();
  34.             this.label1 = new System.Windows.Forms.Label();
  35.             this.label2 = new System.Windows.Forms.Label();
  36.             this.groupBox1 = new System.Windows.Forms.GroupBox();
  37.             this.groupBox1.SuspendLayout();
  38.             this.SuspendLayout();
  39.             //
  40.             // TextNovoNumero
  41.             //
  42.             this.TextNovoNumero.Location = new System.Drawing.Point(66, 43);
  43.             this.TextNovoNumero.Name = "TextNovoNumero";
  44.             this.TextNovoNumero.Size = new System.Drawing.Size(100, 20);
  45.             this.TextNovoNumero.TabIndex = 0;
  46.             //
  47.             // TextNovoNome
  48.             //
  49.             this.TextNovoNome.Location = new System.Drawing.Point(66, 78);
  50.             this.TextNovoNome.Name = "TextNovoNome";
  51.             this.TextNovoNome.Size = new System.Drawing.Size(100, 20);
  52.             this.TextNovoNome.TabIndex = 1;
  53.             //
  54.             // BotaoCriar
  55.             //
  56.             this.BotaoCriar.Location = new System.Drawing.Point(66, 104);
  57.             this.BotaoCriar.Name = "BotaoCriar";
  58.             this.BotaoCriar.Size = new System.Drawing.Size(100, 23);
  59.             this.BotaoCriar.TabIndex = 2;
  60.             this.BotaoCriar.Text = "Criar";
  61.             this.BotaoCriar.UseVisualStyleBackColor = true;
  62.             this.BotaoCriar.Click += new System.EventHandler(this.BotaoCriar_Click);
  63.             //
  64.             // label1
  65.             //
  66.             this.label1.AutoSize = true;
  67.             this.label1.Location = new System.Drawing.Point(16, 46);
  68.             this.label1.Name = "label1";
  69.             this.label1.Size = new System.Drawing.Size(44, 13);
  70.             this.label1.TabIndex = 3;
  71.             this.label1.Text = "Numero";
  72.             //
  73.             // label2
  74.             //
  75.             this.label2.AutoSize = true;
  76.             this.label2.Location = new System.Drawing.Point(25, 81);
  77.             this.label2.Name = "label2";
  78.             this.label2.Size = new System.Drawing.Size(35, 13);
  79.             this.label2.TabIndex = 4;
  80.             this.label2.Text = "Nome";
  81.             //
  82.             // groupBox1
  83.             //
  84.             this.groupBox1.Controls.Add(this.label1);
  85.             this.groupBox1.Controls.Add(this.label2);
  86.             this.groupBox1.Controls.Add(this.BotaoCriar);
  87.             this.groupBox1.Controls.Add(this.TextNovoNumero);
  88.             this.groupBox1.Controls.Add(this.TextNovoNome);
  89.             this.groupBox1.Location = new System.Drawing.Point(12, 12);
  90.             this.groupBox1.Name = "groupBox1";
  91.             this.groupBox1.Size = new System.Drawing.Size(216, 133);
  92.             this.groupBox1.TabIndex = 5;
  93.             this.groupBox1.TabStop = false;
  94.             this.groupBox1.Text = "Abertura de Conta";
  95.             //
  96.             // Form2
  97.             //
  98.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  99.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  100.             this.ClientSize = new System.Drawing.Size(240, 157);
  101.             this.Controls.Add(this.groupBox1);
  102.             this.Name = "Form2";
  103.             this.Text = "Banco Criar Conta";
  104.             this.Load += new System.EventHandler(this.Form2_Load);
  105.             this.groupBox1.ResumeLayout(false);
  106.             this.groupBox1.PerformLayout();
  107.             this.ResumeLayout(false);
  108.  
  109.         }
  110.  
  111.         #endregion
  112.  
  113.         private System.Windows.Forms.TextBox TextNovoNumero;
  114.         private System.Windows.Forms.TextBox TextNovoNome;
  115.         private System.Windows.Forms.Button BotaoCriar;
  116.         private System.Windows.Forms.Label label1;
  117.         private System.Windows.Forms.Label label2;
  118.         private System.Windows.Forms.GroupBox groupBox1;
  119.     }
  120. }
Add Comment
Please, Sign In to add comment