-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathDeleteRankPopup.Designer.cs
115 lines (109 loc) · 5.11 KB
/
DeleteRankPopup.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
namespace fCraft.ConfigGUI {
partial class DeleteRankPopup {
/// <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() {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager( typeof( DeleteRankPopup ) );
this.lWarning = new System.Windows.Forms.Label();
this.lSubstitute = new System.Windows.Forms.Label();
this.cSubstitute = new System.Windows.Forms.ComboBox();
this.bDelete = new System.Windows.Forms.Button();
this.bCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lWarning
//
this.lWarning.AutoSize = true;
this.lWarning.Location = new System.Drawing.Point( 12, 9 );
this.lWarning.Name = "lWarning";
this.lWarning.Size = new System.Drawing.Size( 393, 39 );
this.lWarning.TabIndex = 0;
this.lWarning.Text = resources.GetString( "lWarning.Text" );
//
// lSubstitute
//
this.lSubstitute.AutoSize = true;
this.lSubstitute.Location = new System.Drawing.Point( 12, 69 );
this.lSubstitute.Name = "lSubstitute";
this.lSubstitute.Size = new System.Drawing.Size( 81, 13 );
this.lSubstitute.TabIndex = 1;
this.lSubstitute.Text = "Substitute rank:";
//
// cSubstitute
//
this.cSubstitute.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cSubstitute.FormattingEnabled = true;
this.cSubstitute.Location = new System.Drawing.Point( 102, 66 );
this.cSubstitute.Name = "cSubstitute";
this.cSubstitute.Size = new System.Drawing.Size( 121, 21 );
this.cSubstitute.TabIndex = 2;
this.cSubstitute.SelectedIndexChanged += new System.EventHandler( this.cSubstitute_SelectedIndexChanged );
//
// bDelete
//
this.bDelete.DialogResult = System.Windows.Forms.DialogResult.OK;
this.bDelete.Enabled = false;
this.bDelete.Font = new System.Drawing.Font( "Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ( (byte)( 0 ) ) );
this.bDelete.Location = new System.Drawing.Point( 203, 112 );
this.bDelete.Name = "bDelete";
this.bDelete.Size = new System.Drawing.Size( 100, 25 );
this.bDelete.TabIndex = 3;
this.bDelete.Text = "Delete";
this.bDelete.UseVisualStyleBackColor = true;
//
// bCancel
//
this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.bCancel.Location = new System.Drawing.Point( 309, 112 );
this.bCancel.Name = "bCancel";
this.bCancel.Size = new System.Drawing.Size( 100, 25 );
this.bCancel.TabIndex = 4;
this.bCancel.Text = "Cancel";
this.bCancel.UseVisualStyleBackColor = true;
//
// DeleteRankPopup
//
this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size( 421, 149 );
this.Controls.Add( this.bCancel );
this.Controls.Add( this.bDelete );
this.Controls.Add( this.cSubstitute );
this.Controls.Add( this.lSubstitute );
this.Controls.Add( this.lWarning );
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "DeleteRankPopup";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Deleting a Rank";
this.ResumeLayout( false );
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lWarning;
private System.Windows.Forms.Label lSubstitute;
private System.Windows.Forms.Button bDelete;
private System.Windows.Forms.Button bCancel;
private System.Windows.Forms.ComboBox cSubstitute;
}
}