-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSaveQuestionBox.Designer.cs
145 lines (139 loc) · 7 KB
/
SaveQuestionBox.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
namespace WindowsFormsApp1
{
partial class SaveQuestionBox
{
/// <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.buttonCancel = new System.Windows.Forms.Button();
this.buttonDontSave = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.labelFilename = new System.Windows.Forms.Label();
this.labelQuestion = new System.Windows.Forms.Label();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// buttonCancel
//
this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Location = new System.Drawing.Point(249, 80);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 0;
this.buttonCancel.Text = "Cancel";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// buttonDontSave
//
this.buttonDontSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonDontSave.Location = new System.Drawing.Point(168, 80);
this.buttonDontSave.Name = "buttonDontSave";
this.buttonDontSave.Size = new System.Drawing.Size(75, 23);
this.buttonDontSave.TabIndex = 1;
this.buttonDontSave.Text = "Don\'t Save";
this.buttonDontSave.UseVisualStyleBackColor = true;
this.buttonDontSave.Click += new System.EventHandler(this.buttonDontSave_Click);
//
// buttonSave
//
this.buttonSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonSave.Location = new System.Drawing.Point(87, 80);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(75, 23);
this.buttonSave.TabIndex = 2;
this.buttonSave.Text = "Save";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
//
// panel1
//
this.panel1.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.panel1.Controls.Add(this.labelFilename);
this.panel1.Controls.Add(this.labelQuestion);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(336, 74);
this.panel1.TabIndex = 3;
//
// labelFilename
//
this.labelFilename.AutoSize = true;
this.labelFilename.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelFilename.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(153)))));
this.labelFilename.Location = new System.Drawing.Point(12, 30);
this.labelFilename.Name = "labelFilename";
this.labelFilename.Size = new System.Drawing.Size(70, 21);
this.labelFilename.TabIndex = 1;
this.labelFilename.Text = "filename";
//
// labelQuestion
//
this.labelQuestion.AutoSize = true;
this.labelQuestion.BackColor = System.Drawing.Color.Transparent;
this.labelQuestion.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelQuestion.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(153)))));
this.labelQuestion.Location = new System.Drawing.Point(12, 9);
this.labelQuestion.Name = "labelQuestion";
this.labelQuestion.Size = new System.Drawing.Size(230, 21);
this.labelQuestion.TabIndex = 0;
this.labelQuestion.Text = "Do you want to save changes to";
//
// SaveQuestionBox
//
this.AcceptButton = this.buttonSave;
this.AccessibleRole = System.Windows.Forms.AccessibleRole.Dialog;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.buttonCancel;
this.ClientSize = new System.Drawing.Size(336, 115);
this.Controls.Add(this.panel1);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.buttonDontSave);
this.Controls.Add(this.buttonCancel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SaveQuestionBox";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Save";
this.Load += new System.EventHandler(this.SaveQuestionBox_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Button buttonDontSave;
private System.Windows.Forms.Button buttonSave;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label labelFilename;
private System.Windows.Forms.Label labelQuestion;
}
}