Advertisement
Guest User

Untitled

a guest
Feb 12th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.35 KB | None | 0 0
  1. namespace SOTestWinForms
  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.panel1 = new System.Windows.Forms.Panel();
  32.       this.button1 = new System.Windows.Forms.Button();
  33.       this.panel1.SuspendLayout();
  34.       this.SuspendLayout();
  35.       //
  36.       // panel1
  37.       //
  38.       this.panel1.BackColor = System.Drawing.Color.SandyBrown;
  39.       this.panel1.Controls.Add(this.button1);
  40.       this.panel1.Location = new System.Drawing.Point(49, 45);
  41.       this.panel1.Name = "panel1";
  42.       this.panel1.Padding = new System.Windows.Forms.Padding(2);
  43.       this.panel1.Size = new System.Drawing.Size(200, 100);
  44.       this.panel1.TabIndex = 0;
  45.       //
  46.       // button1
  47.       //
  48.       this.button1.Dock = System.Windows.Forms.DockStyle.Fill;
  49.       this.button1.Enabled = false;
  50.       this.button1.Location = new System.Drawing.Point(2, 2);
  51.       this.button1.Name = "button1";
  52.       this.button1.Size = new System.Drawing.Size(196, 96);
  53.       this.button1.TabIndex = 0;
  54.       this.button1.Text = "DisabledButton";
  55.       this.button1.UseVisualStyleBackColor = true;
  56.       //
  57.       // Form1
  58.       //
  59.       this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  60.       this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  61.       this.ClientSize = new System.Drawing.Size(458, 381);
  62.       this.Controls.Add(this.panel1);
  63.       this.Name = "Form1";
  64.       this.Text = "Form1";
  65.       this.panel1.ResumeLayout(false);
  66.       this.ResumeLayout(false);
  67.  
  68.     }
  69.  
  70.     #endregion
  71.  
  72.     private System.Windows.Forms.Panel panel1;
  73.     private System.Windows.Forms.Button button1;
  74.  
  75.  
  76.   }
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement