| 1 | namespace Eraser |
|---|
| 2 | { |
|---|
| 3 | partial class ShellConfirmationDialog |
|---|
| 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 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ShellConfirmationDialog)); |
|---|
| 32 | this.Image = new System.Windows.Forms.PictureBox(); |
|---|
| 33 | this.Message = new System.Windows.Forms.Label(); |
|---|
| 34 | this.YesBtn = new System.Windows.Forms.Button(); |
|---|
| 35 | this.NoBtn = new System.Windows.Forms.Button(); |
|---|
| 36 | this.OptionsButton = new System.Windows.Forms.Button(); |
|---|
| 37 | ((System.ComponentModel.ISupportInitialize)(this.Image)).BeginInit(); |
|---|
| 38 | this.SuspendLayout(); |
|---|
| 39 | // |
|---|
| 40 | // Image |
|---|
| 41 | // |
|---|
| 42 | resources.ApplyResources(this.Image, "Image"); |
|---|
| 43 | this.Image.Name = "Image"; |
|---|
| 44 | this.Image.TabStop = false; |
|---|
| 45 | // |
|---|
| 46 | // Message |
|---|
| 47 | // |
|---|
| 48 | resources.ApplyResources(this.Message, "Message"); |
|---|
| 49 | this.Message.Name = "Message"; |
|---|
| 50 | // |
|---|
| 51 | // YesBtn |
|---|
| 52 | // |
|---|
| 53 | resources.ApplyResources(this.YesBtn, "YesBtn"); |
|---|
| 54 | this.YesBtn.DialogResult = System.Windows.Forms.DialogResult.Yes; |
|---|
| 55 | this.YesBtn.Name = "YesBtn"; |
|---|
| 56 | this.YesBtn.UseVisualStyleBackColor = true; |
|---|
| 57 | // |
|---|
| 58 | // NoBtn |
|---|
| 59 | // |
|---|
| 60 | resources.ApplyResources(this.NoBtn, "NoBtn"); |
|---|
| 61 | this.NoBtn.DialogResult = System.Windows.Forms.DialogResult.No; |
|---|
| 62 | this.NoBtn.Name = "NoBtn"; |
|---|
| 63 | this.NoBtn.UseVisualStyleBackColor = true; |
|---|
| 64 | // |
|---|
| 65 | // OptionsButton |
|---|
| 66 | // |
|---|
| 67 | resources.ApplyResources(this.OptionsButton, "OptionsButton"); |
|---|
| 68 | this.OptionsButton.Name = "OptionsButton"; |
|---|
| 69 | this.OptionsButton.UseVisualStyleBackColor = true; |
|---|
| 70 | this.OptionsButton.Click += new System.EventHandler(this.OptionsButton_Click); |
|---|
| 71 | // |
|---|
| 72 | // ShellConfirmationDialog |
|---|
| 73 | // |
|---|
| 74 | this.AcceptButton = this.NoBtn; |
|---|
| 75 | resources.ApplyResources(this, "$this"); |
|---|
| 76 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; |
|---|
| 77 | this.CancelButton = this.YesBtn; |
|---|
| 78 | this.Controls.Add(this.OptionsButton); |
|---|
| 79 | this.Controls.Add(this.NoBtn); |
|---|
| 80 | this.Controls.Add(this.YesBtn); |
|---|
| 81 | this.Controls.Add(this.Message); |
|---|
| 82 | this.Controls.Add(this.Image); |
|---|
| 83 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; |
|---|
| 84 | this.MaximizeBox = false; |
|---|
| 85 | this.MinimizeBox = false; |
|---|
| 86 | this.Name = "ShellConfirmationDialog"; |
|---|
| 87 | this.ShowInTaskbar = false; |
|---|
| 88 | this.TopMost = true; |
|---|
| 89 | ((System.ComponentModel.ISupportInitialize)(this.Image)).EndInit(); |
|---|
| 90 | this.ResumeLayout(false); |
|---|
| 91 | this.PerformLayout(); |
|---|
| 92 | |
|---|
| 93 | } |
|---|
| 94 | |
|---|
| 95 | #endregion |
|---|
| 96 | |
|---|
| 97 | private System.Windows.Forms.PictureBox Image; |
|---|
| 98 | private System.Windows.Forms.Label Message; |
|---|
| 99 | private System.Windows.Forms.Button YesBtn; |
|---|
| 100 | private System.Windows.Forms.Button NoBtn; |
|---|
| 101 | private System.Windows.Forms.Button OptionsButton; |
|---|
| 102 | } |
|---|
| 103 | } |
|---|