Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.27 KB | None | 0 0
  1. namespace WinFormExpl
  2. {
  3.     partial class InputDialog
  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.tPath = new System.Windows.Forms.TextBox();
  32.             this.bOk = new System.Windows.Forms.Button();
  33.             this.bCancel = new System.Windows.Forms.Button();
  34.             this.label1 = new System.Windows.Forms.Label();
  35.             this.SuspendLayout();
  36.             //
  37.             // tPath
  38.             //
  39.             this.tPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  40.             | System.Windows.Forms.AnchorStyles.Right)));
  41.             this.tPath.Location = new System.Drawing.Point(23, 79);
  42.             this.tPath.Name = "tPath";
  43.             this.tPath.Size = new System.Drawing.Size(201, 20);
  44.             this.tPath.TabIndex = 0;
  45.             //
  46.             // bOk
  47.             //
  48.             this.bOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  49.             this.bOk.DialogResult = System.Windows.Forms.DialogResult.OK;
  50.             this.bOk.Location = new System.Drawing.Point(23, 124);
  51.             this.bOk.Name = "bOk";
  52.             this.bOk.Size = new System.Drawing.Size(75, 23);
  53.             this.bOk.TabIndex = 1;
  54.             this.bOk.Text = "Ok";
  55.             this.bOk.UseVisualStyleBackColor = true;
  56.             //
  57.             // bCancel
  58.             //
  59.             this.bCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  60.             this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  61.             this.bCancel.Location = new System.Drawing.Point(229, 124);
  62.             this.bCancel.Name = "bCancel";
  63.             this.bCancel.Size = new System.Drawing.Size(75, 23);
  64.             this.bCancel.TabIndex = 2;
  65.             this.bCancel.Text = "Cancel";
  66.             this.bCancel.UseVisualStyleBackColor = true;
  67.             //
  68.             // label1
  69.             //
  70.             this.label1.AutoSize = true;
  71.             this.label1.Location = new System.Drawing.Point(20, 46);
  72.             this.label1.Name = "label1";
  73.             this.label1.Size = new System.Drawing.Size(29, 13);
  74.             this.label1.TabIndex = 3;
  75.             this.label1.Text = "Path";
  76.             this.label1.Click += new System.EventHandler(this.label1_Click);
  77.             //
  78.             // InputDialog
  79.             //
  80.             this.AcceptButton = this.bOk;
  81.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  82.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  83.             this.CancelButton = this.bCancel;
  84.             this.ClientSize = new System.Drawing.Size(317, 162);
  85.             this.Controls.Add(this.label1);
  86.             this.Controls.Add(this.bCancel);
  87.             this.Controls.Add(this.bOk);
  88.             this.Controls.Add(this.tPath);
  89.             this.Name = "InputDialog";
  90.             this.Text = "InputDialog";
  91.             this.Load += new System.EventHandler(this.InputDialog_Load);
  92.             this.ResumeLayout(false);
  93.             this.PerformLayout();
  94.  
  95.         }
  96.  
  97.         #endregion
  98.  
  99.         private System.Windows.Forms.TextBox tPath;
  100.         private System.Windows.Forms.Button bOk;
  101.         private System.Windows.Forms.Button bCancel;
  102.         private System.Windows.Forms.Label label1;
  103.     }
  104. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement