-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDarkTaskDialog_InitSlim.Generated.cs
95 lines (94 loc) · 4.28 KB
/
DarkTaskDialog_InitSlim.Generated.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
namespace Update;
partial class DarkTaskDialog
{
/// <summary>
/// Custom generated component initializer with cruft removed.
/// </summary>
private void InitSlim()
{
this.IconPictureBox = new System.Windows.Forms.PictureBox();
this.BottomFLP = new System.Windows.Forms.FlowLayoutPanel();
this.Cancel_Button = new DarkButton();
this.NoButton = new DarkButton();
this.YesButton = new DarkButton();
this.MessageLabel = new DarkLabel();
((System.ComponentModel.ISupportInitialize)(this.IconPictureBox)).BeginInit();
this.BottomFLP.SuspendLayout();
this.SuspendLayout();
//
// IconPictureBox
//
this.IconPictureBox.Location = new System.Drawing.Point(10, 10);
this.IconPictureBox.Size = new System.Drawing.Size(32, 32);
this.IconPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
//
// BottomFLP
//
this.BottomFLP.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.BottomFLP.BackColor = System.Drawing.SystemColors.Control;
this.BottomFLP.Controls.Add(this.Cancel_Button);
this.BottomFLP.Controls.Add(this.NoButton);
this.BottomFLP.Controls.Add(this.YesButton);
this.BottomFLP.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
this.BottomFLP.Location = new System.Drawing.Point(0, 169);
this.BottomFLP.Margin = new System.Windows.Forms.Padding(0);
this.BottomFLP.Padding = new System.Windows.Forms.Padding(0, 0, 7, 0);
this.BottomFLP.Size = new System.Drawing.Size(532, 42);
this.BottomFLP.TabIndex = 1;
//
// Cancel_Button
//
this.Cancel_Button.AutoSize = true;
this.Cancel_Button.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.Cancel_Button.Margin = new System.Windows.Forms.Padding(3, 9, 3, 3);
this.Cancel_Button.MinimumSize = new System.Drawing.Size(76, 23);
this.Cancel_Button.Padding = new System.Windows.Forms.Padding(10, 0, 10, 0);
this.Cancel_Button.TabIndex = 2;
//
// NoButton
//
this.NoButton.AutoSize = true;
this.NoButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.NoButton.Margin = new System.Windows.Forms.Padding(3, 9, 3, 3);
this.NoButton.MinimumSize = new System.Drawing.Size(76, 23);
this.NoButton.Padding = new System.Windows.Forms.Padding(10, 0, 10, 0);
this.NoButton.TabIndex = 1;
//
// YesButton
//
this.YesButton.AutoSize = true;
this.YesButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.YesButton.Margin = new System.Windows.Forms.Padding(3, 9, 3, 3);
this.YesButton.MinimumSize = new System.Drawing.Size(76, 23);
this.YesButton.Padding = new System.Windows.Forms.Padding(10, 0, 10, 0);
this.YesButton.TabIndex = 0;
//
// MessageLabel
//
this.MessageLabel.AutoSize = true;
this.MessageLabel.Location = new System.Drawing.Point(52, 15);
//
// DarkTaskDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.ClientSize = new System.Drawing.Size(532, 211);
this.Controls.Add(this.BottomFLP);
this.Controls.Add(this.MessageLabel);
this.Controls.Add(this.IconPictureBox);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
// Hack to prevent slow first render on some forms if Text is blank
this.Text = " ";
((System.ComponentModel.ISupportInitialize)(this.IconPictureBox)).EndInit();
this.BottomFLP.ResumeLayout(false);
this.BottomFLP.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
}