-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.Designer.cs
More file actions
141 lines (137 loc) · 5.41 KB
/
Config.Designer.cs
File metadata and controls
141 lines (137 loc) · 5.41 KB
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
namespace StreamStartingTimer {
partial class Config {
/// <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(Config));
propertyGrid1 = new PropertyGrid();
btnOk = new Button();
btnCancel = new Button();
openFileDialog1 = new OpenFileDialog();
saveFileDialog1 = new SaveFileDialog();
btnSave = new Button();
btnLoad = new Button();
SuspendLayout();
//
// propertyGrid1
//
propertyGrid1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
propertyGrid1.Location = new Point(0, 0);
propertyGrid1.Name = "propertyGrid1";
propertyGrid1.PropertySort = PropertySort.Categorized;
propertyGrid1.Size = new Size(488, 369);
propertyGrid1.TabIndex = 0;
propertyGrid1.ToolbarVisible = false;
propertyGrid1.PropertyValueChanged += propertyGrid1_PropertyValueChanged;
//
// btnOk
//
btnOk.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
btnOk.Location = new Point(401, 375);
btnOk.Name = "btnOk";
btnOk.Size = new Size(75, 23);
btnOk.TabIndex = 1;
btnOk.Text = "OK";
btnOk.UseVisualStyleBackColor = true;
btnOk.Click += btnOk_Click;
//
// btnCancel
//
btnCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
btnCancel.Location = new Point(320, 375);
btnCancel.Name = "btnCancel";
btnCancel.Size = new Size(75, 23);
btnCancel.TabIndex = 2;
btnCancel.Text = "Cancel";
btnCancel.UseVisualStyleBackColor = true;
btnCancel.Click += btnCancel_Click;
//
// openFileDialog1
//
openFileDialog1.AutoUpgradeEnabled = false;
openFileDialog1.DefaultExt = "json";
openFileDialog1.FileName = "DefaultConfig.json";
openFileDialog1.Filter = "JSON files|*.json";
openFileDialog1.Title = "Load Event List";
//
// saveFileDialog1
//
saveFileDialog1.AutoUpgradeEnabled = false;
saveFileDialog1.DefaultExt = "json";
saveFileDialog1.FileName = "DefaultConfig.json";
saveFileDialog1.Filter = "JSON files|*.json";
saveFileDialog1.Title = "Save Event List";
//
// btnSave
//
btnSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
btnSave.Location = new Point(239, 375);
btnSave.Name = "btnSave";
btnSave.Size = new Size(75, 23);
btnSave.TabIndex = 8;
btnSave.Text = "&Save";
btnSave.UseVisualStyleBackColor = true;
btnSave.Click += btnSave_Click;
//
// btnLoad
//
btnLoad.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
btnLoad.Location = new Point(158, 375);
btnLoad.Name = "btnLoad";
btnLoad.Size = new Size(75, 23);
btnLoad.TabIndex = 9;
btnLoad.Text = "&Load";
btnLoad.UseVisualStyleBackColor = true;
btnLoad.Click += btnLoad_Click;
//
// Config
//
AcceptButton = btnOk;
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
CancelButton = btnCancel;
ClientSize = new Size(488, 408);
ControlBox = false;
Controls.Add(btnLoad);
Controls.Add(btnSave);
Controls.Add(btnCancel);
Controls.Add(btnOk);
Controls.Add(propertyGrid1);
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
MinimizeBox = false;
Name = "Config";
ShowInTaskbar = false;
SizeGripStyle = SizeGripStyle.Show;
StartPosition = FormStartPosition.CenterParent;
Text = "Stream Starting Timer - Configuration";
Load += Config_Load;
ResumeLayout(false);
}
#endregion
private PropertyGrid propertyGrid1;
private Button btnOk;
private Button btnCancel;
private OpenFileDialog openFileDialog1;
private SaveFileDialog saveFileDialog1;
private Button btnSave;
private Button btnLoad;
}
}