Advertisement
GlobalAccessSoftware

YesNoAlwaysForm.Designer.cs

Nov 7th, 2017
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 5.12 KB | None | 0 0
  1. namespace ShowMeEditorStandAloneVersion
  2. {
  3.   partial class YesNoAlwaysForm
  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.YesButton = new System.Windows.Forms.Button();
  32.       this.NoButton = new System.Windows.Forms.Button();
  33.       this.PreferenceCheckBox = new System.Windows.Forms.CheckBox();
  34.       this.label1 = new System.Windows.Forms.Label();
  35.       this.InfoTextBox = new System.Windows.Forms.TextBox();
  36.       this.SuspendLayout();
  37.       //
  38.       // YesButton
  39.       //
  40.       this.YesButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  41.       this.YesButton.Location = new System.Drawing.Point(114, 176);
  42.       this.YesButton.Name = "YesButton";
  43.       this.YesButton.Size = new System.Drawing.Size(75, 23);
  44.       this.YesButton.TabIndex = 0;
  45.       this.YesButton.Text = "Yes";
  46.       this.YesButton.UseVisualStyleBackColor = true;
  47.       this.YesButton.Click += new System.EventHandler(this.YesButtonClick);
  48.       //
  49.       // NoButton
  50.       //
  51.       this.NoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  52.       this.NoButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  53.       this.NoButton.Location = new System.Drawing.Point(215, 176);
  54.       this.NoButton.Name = "NoButton";
  55.       this.NoButton.Size = new System.Drawing.Size(75, 23);
  56.       this.NoButton.TabIndex = 1;
  57.       this.NoButton.Text = "No";
  58.       this.NoButton.UseVisualStyleBackColor = true;
  59.       this.NoButton.Click += new System.EventHandler(this.NoButtonClick);
  60.       //
  61.       // PreferenceCheckBox
  62.       //
  63.       this.PreferenceCheckBox.AutoSize = true;
  64.       this.PreferenceCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  65.       this.PreferenceCheckBox.Location = new System.Drawing.Point(47, 150);
  66.       this.PreferenceCheckBox.Name = "PreferenceCheckBox";
  67.       this.PreferenceCheckBox.Size = new System.Drawing.Size(252, 22);
  68.       this.PreferenceCheckBox.TabIndex = 2;
  69.       this.PreferenceCheckBox.Text = "Make This My Preference Setting.";
  70.       this.PreferenceCheckBox.UseVisualStyleBackColor = true;
  71.       //
  72.       // label1
  73.       //
  74.       this.label1.AutoSize = true;
  75.       this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  76.       this.label1.Location = new System.Drawing.Point(13, 127);
  77.       this.label1.Name = "label1";
  78.       this.label1.Size = new System.Drawing.Size(287, 18);
  79.       this.label1.TabIndex = 3;
  80.       this.label1.Text = "Remember this and don\'t bother me again.";
  81.       //
  82.       // InfoTextBox
  83.       //
  84.       this.InfoTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  85.       this.InfoTextBox.Location = new System.Drawing.Point(12, 12);
  86.       this.InfoTextBox.Multiline = true;
  87.       this.InfoTextBox.Name = "InfoTextBox";
  88.       this.InfoTextBox.ReadOnly = true;
  89.       this.InfoTextBox.Size = new System.Drawing.Size(278, 110);
  90.       this.InfoTextBox.TabIndex = 4;
  91.       //
  92.       // YesNoAlwaysForm
  93.       //
  94.       this.AcceptButton = this.YesButton;
  95.       this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  96.       this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  97.       this.ClientSize = new System.Drawing.Size(302, 211);
  98.       this.ControlBox = false;
  99.       this.Controls.Add(this.InfoTextBox);
  100.       this.Controls.Add(this.label1);
  101.       this.Controls.Add(this.PreferenceCheckBox);
  102.       this.Controls.Add(this.NoButton);
  103.       this.Controls.Add(this.YesButton);
  104.       this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
  105.       this.MaximizeBox = false;
  106.       this.MinimizeBox = false;
  107.       this.Name = "YesNoAlwaysForm";
  108.       this.Text = "Save This File?";
  109.       this.TopMost = true;
  110.       this.ResumeLayout(false);
  111.       this.PerformLayout();
  112.  
  113.     }
  114.  
  115.     #endregion
  116.  
  117.     private System.Windows.Forms.Button YesButton;
  118.     private System.Windows.Forms.Button NoButton;
  119.     private System.Windows.Forms.CheckBox PreferenceCheckBox;
  120.     private System.Windows.Forms.Label label1;
  121.     private System.Windows.Forms.TextBox InfoTextBox;
  122.   }
  123. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement