Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace TestOpenFileDialog
- {
- partial class MainForm
- {
- /// <summary>
- /// Designer variable used to keep track of non-visual components.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Disposes resources used by the form.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing) {
- if (components != null) {
- components.Dispose();
- }
- }
- base.Dispose(disposing);
- }
- /// <summary>
- /// This method is required for Windows Forms designer support.
- /// Do not change the method contents inside the source code editor. The Forms designer might
- /// not be able to load this method if it was changed manually.
- /// </summary>
- private void InitializeComponent()
- {
- this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
- this.button1 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // openFileDialog1
- //
- this.openFileDialog1.FileName = "openFileDialog1";
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(205, 180);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(75, 23);
- this.button1.TabIndex = 0;
- this.button1.Text = "button1";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.Button1Click);
- //
- // MainForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(703, 597);
- this.Controls.Add(this.button1);
- this.Name = "MainForm";
- this.Text = "TestOpenFileDialog";
- this.ResumeLayout(false);
- }
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.OpenFileDialog openFileDialog1;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment