Advertisement
Guest User

Form1.Designer.cs

a guest
Jan 3rd, 2017
546
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.90 KB | None | 0 0
  1. namespace WindowsFormsApplication1
  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.exampleListBox = new System.Windows.Forms.ListBox();
  32.             this.exampleButton = new System.Windows.Forms.Button();
  33.             this.SuspendLayout();
  34.             //
  35.             // exampleListBox
  36.             //
  37.             this.exampleListBox.Dock = System.Windows.Forms.DockStyle.Top;
  38.             this.exampleListBox.FormattingEnabled = true;
  39.             this.exampleListBox.Location = new System.Drawing.Point(0, 0);
  40.             this.exampleListBox.Name = "exampleListBox";
  41.             this.exampleListBox.Size = new System.Drawing.Size(284, 290);
  42.             this.exampleListBox.TabIndex = 0;
  43.             this.exampleListBox.SelectedIndexChanged += new System.EventHandler(this.exampleListBox_SelectedIndexChanged);
  44.             //
  45.             // exampleButton
  46.             //
  47.             this.exampleButton.Dock = System.Windows.Forms.DockStyle.Bottom;
  48.             this.exampleButton.Location = new System.Drawing.Point(0, 292);
  49.             this.exampleButton.Name = "exampleButton";
  50.             this.exampleButton.Size = new System.Drawing.Size(284, 23);
  51.             this.exampleButton.TabIndex = 1;
  52.             this.exampleButton.Text = "button1";
  53.             this.exampleButton.UseVisualStyleBackColor = true;
  54.             this.exampleButton.Click += new System.EventHandler(this.exampleButton_Click);
  55.             //
  56.             // Form1
  57.             //
  58.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  59.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  60.             this.ClientSize = new System.Drawing.Size(284, 315);
  61.             this.Controls.Add(this.exampleButton);
  62.             this.Controls.Add(this.exampleListBox);
  63.             this.Name = "Form1";
  64.             this.Text = "Form1";
  65.             this.ResumeLayout(false);
  66.  
  67.         }
  68.  
  69.         #endregion
  70.  
  71.         private System.Windows.Forms.ListBox exampleListBox;
  72.         private System.Windows.Forms.Button exampleButton;
  73.     }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement