BurningBunny

openFileDialog Mainform.Designer.cs

Mar 15th, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.96 KB | None | 0 0
  1. namespace TestOpenFileDialog
  2. {
  3.     partial class MainForm
  4.     {
  5.         /// <summary>
  6.         /// Designer variable used to keep track of non-visual components.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.        
  10.         /// <summary>
  11.         /// Disposes resources used by the form.
  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) {
  17.                 if (components != null) {
  18.                     components.Dispose();
  19.                 }
  20.             }
  21.             base.Dispose(disposing);
  22.         }
  23.        
  24.         /// <summary>
  25.         /// This method is required for Windows Forms designer support.
  26.         /// Do not change the method contents inside the source code editor. The Forms designer might
  27.         /// not be able to load this method if it was changed manually.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
  32.             this.button1 = new System.Windows.Forms.Button();
  33.             this.SuspendLayout();
  34.             //
  35.             // openFileDialog1
  36.             //
  37.             this.openFileDialog1.FileName = "openFileDialog1";
  38.             //
  39.             // button1
  40.             //
  41.             this.button1.Location = new System.Drawing.Point(205, 180);
  42.             this.button1.Name = "button1";
  43.             this.button1.Size = new System.Drawing.Size(75, 23);
  44.             this.button1.TabIndex = 0;
  45.             this.button1.Text = "button1";
  46.             this.button1.UseVisualStyleBackColor = true;
  47.             this.button1.Click += new System.EventHandler(this.Button1Click);
  48.             //
  49.             // MainForm
  50.             //
  51.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  52.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  53.             this.ClientSize = new System.Drawing.Size(703, 597);
  54.             this.Controls.Add(this.button1);
  55.             this.Name = "MainForm";
  56.             this.Text = "TestOpenFileDialog";
  57.             this.ResumeLayout(false);
  58.         }
  59.         private System.Windows.Forms.Button button1;
  60.         private System.Windows.Forms.OpenFileDialog openFileDialog1;
  61.     }
  62. }
Advertisement
Add Comment
Please, Sign In to add comment