Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace WindowsFormsApplication1
- {
- partial class Form1
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.exampleListBox = new System.Windows.Forms.ListBox();
- this.exampleButton = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // exampleListBox
- //
- this.exampleListBox.Dock = System.Windows.Forms.DockStyle.Top;
- this.exampleListBox.FormattingEnabled = true;
- this.exampleListBox.Location = new System.Drawing.Point(0, 0);
- this.exampleListBox.Name = "exampleListBox";
- this.exampleListBox.Size = new System.Drawing.Size(284, 290);
- this.exampleListBox.TabIndex = 0;
- this.exampleListBox.SelectedIndexChanged += new System.EventHandler(this.exampleListBox_SelectedIndexChanged);
- //
- // exampleButton
- //
- this.exampleButton.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.exampleButton.Location = new System.Drawing.Point(0, 292);
- this.exampleButton.Name = "exampleButton";
- this.exampleButton.Size = new System.Drawing.Size(284, 23);
- this.exampleButton.TabIndex = 1;
- this.exampleButton.Text = "button1";
- this.exampleButton.UseVisualStyleBackColor = true;
- this.exampleButton.Click += new System.EventHandler(this.exampleButton_Click);
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(284, 315);
- this.Controls.Add(this.exampleButton);
- this.Controls.Add(this.exampleListBox);
- this.Name = "Form1";
- this.Text = "Form1";
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.ListBox exampleListBox;
- private System.Windows.Forms.Button exampleButton;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement