Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace ShowMeEditorStandAloneVersion
- {
- partial class YesNoAlwaysForm
- {
- /// <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.YesButton = new System.Windows.Forms.Button();
- this.NoButton = new System.Windows.Forms.Button();
- this.PreferenceCheckBox = new System.Windows.Forms.CheckBox();
- this.label1 = new System.Windows.Forms.Label();
- this.InfoTextBox = new System.Windows.Forms.TextBox();
- this.SuspendLayout();
- //
- // YesButton
- //
- this.YesButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.YesButton.Location = new System.Drawing.Point(114, 176);
- this.YesButton.Name = "YesButton";
- this.YesButton.Size = new System.Drawing.Size(75, 23);
- this.YesButton.TabIndex = 0;
- this.YesButton.Text = "Yes";
- this.YesButton.UseVisualStyleBackColor = true;
- this.YesButton.Click += new System.EventHandler(this.YesButtonClick);
- //
- // NoButton
- //
- this.NoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.NoButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.NoButton.Location = new System.Drawing.Point(215, 176);
- this.NoButton.Name = "NoButton";
- this.NoButton.Size = new System.Drawing.Size(75, 23);
- this.NoButton.TabIndex = 1;
- this.NoButton.Text = "No";
- this.NoButton.UseVisualStyleBackColor = true;
- this.NoButton.Click += new System.EventHandler(this.NoButtonClick);
- //
- // PreferenceCheckBox
- //
- this.PreferenceCheckBox.AutoSize = true;
- this.PreferenceCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.PreferenceCheckBox.Location = new System.Drawing.Point(47, 150);
- this.PreferenceCheckBox.Name = "PreferenceCheckBox";
- this.PreferenceCheckBox.Size = new System.Drawing.Size(252, 22);
- this.PreferenceCheckBox.TabIndex = 2;
- this.PreferenceCheckBox.Text = "Make This My Preference Setting.";
- this.PreferenceCheckBox.UseVisualStyleBackColor = true;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.Location = new System.Drawing.Point(13, 127);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(287, 18);
- this.label1.TabIndex = 3;
- this.label1.Text = "Remember this and don\'t bother me again.";
- //
- // InfoTextBox
- //
- this.InfoTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.InfoTextBox.Location = new System.Drawing.Point(12, 12);
- this.InfoTextBox.Multiline = true;
- this.InfoTextBox.Name = "InfoTextBox";
- this.InfoTextBox.ReadOnly = true;
- this.InfoTextBox.Size = new System.Drawing.Size(278, 110);
- this.InfoTextBox.TabIndex = 4;
- //
- // YesNoAlwaysForm
- //
- this.AcceptButton = this.YesButton;
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(302, 211);
- this.ControlBox = false;
- this.Controls.Add(this.InfoTextBox);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.PreferenceCheckBox);
- this.Controls.Add(this.NoButton);
- this.Controls.Add(this.YesButton);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "YesNoAlwaysForm";
- this.Text = "Save This File?";
- this.TopMost = true;
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Button YesButton;
- private System.Windows.Forms.Button NoButton;
- private System.Windows.Forms.CheckBox PreferenceCheckBox;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox InfoTextBox;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement