-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFormSaver.cs
369 lines (310 loc) · 9.69 KB
/
FormSaver.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
namespace Menees.Windows.Forms
{
#region Using Directives
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Diagnostics;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
#endregion
/// <summary>
/// Used to save and load a form's position and state.
/// </summary>
[DefaultEvent(nameof(LoadSettings))]
[ToolboxBitmap(typeof(FormSaver), "Images.FormSaver.bmp")]
public partial class FormSaver : Component
{
#region Private Data Members
private const string FormLayout = "Form Layout";
private ContainerControl? containerControl;
private Form? form;
private EventHandler? loadHandler;
private FormClosedEventHandler? closedHandler;
#endregion
#region Constructors
/// <summary>
/// Creates a new instance.
/// </summary>
public FormSaver()
{
this.InitializeComponent();
}
/// <summary>
/// Creates a new instance in the specified container.
/// </summary>
public FormSaver(IContainer container)
{
if (container != null)
{
container.Add(this);
}
this.InitializeComponent();
}
/// <summary>
/// Creates a new instance for the specified container control.
/// </summary>
public FormSaver(ContainerControl container)
{
this.InitializeComponent();
this.ContainerControl = container;
}
#endregion
#region Public Events
/// <summary>
/// Called when settings are being loaded.
/// </summary>
[Browsable(true)]
[Category("Serialization")]
[Description("Called when settings are being loaded.")]
public event EventHandler<SettingsEventArgs>? LoadSettings;
/// <summary>
/// Called when settings are being saved.
/// </summary>
[Browsable(true)]
[Category("Serialization")]
[Description("Called when settings are being saved.")]
public event EventHandler<SettingsEventArgs>? SaveSettings;
#endregion
#region Internal Events
// Called before any LoadSettings events.
[Browsable(false)]
internal event EventHandler<SettingsEventArgs>? InternalLoadSettings;
// Called after any SaveSettings events.
[Browsable(true)]
internal event EventHandler<SettingsEventArgs>? InternalSaveSettings;
#endregion
#region Public Properties
/// <summary>
/// Gets or sets whether the settings should automatically load when the form loads.
/// </summary>
[Browsable(true)]
[DefaultValue(true)]
[Category("Behavior")]
[Description("Whether the settings should automatically load when the form loads.")]
public bool AutoLoad { get; set; } = true;
/// <summary>
/// Gets or sets whether the settings should automatically save when the form closes.
/// </summary>
[Browsable(true)]
[DefaultValue(true)]
[Category("Behavior")]
[Description("Whether the settings should automatically save when the form closes.")]
public bool AutoSave { get; set; } = true;
/// <summary>
/// Gets or sets whether the form should be allowed to load minimized.
/// </summary>
[Browsable(true)]
[DefaultValue(false)]
[Category("Behavior")]
[Description("Whether the form should be allowed to load minimized.")]
public bool AllowLoadMinimized { get; set; }
/// <summary>
/// Gets or sets the node where settings should be saved. This can be empty.
/// </summary>
[Browsable(true)]
[DefaultValue(FormLayout)]
[Category("Behavior")]
[Description("The node where settings should be saved. This can be empty.")]
public string SettingsNodeName { get; set; } = FormLayout;
/// <summary>
/// Gets or sets the form to save the settings for. This must be set.
/// </summary>
[Browsable(false)]
[DefaultValue(null)]
[Category("Helper Objects")]
[Description("The form to save the settings for. This must be set.")]
public ContainerControl? ContainerControl
{
get
{
return this.containerControl;
}
set
{
this.containerControl = value;
this.Form = this.containerControl as Form;
}
}
/// <summary>
/// Gets or sets the site for the current component.
/// </summary>
public override ISite? Site
{
set
{
// This is used to automatically set the ContainerControl and Form
// properties. I got this code from the ErrorProvider component and
// from http://www.wiredprairie.us/hardwired,ComponentContainer.aspx.
base.Site = value;
if (value != null)
{
if (value.GetService(typeof(IDesignerHost)) is IDesignerHost host)
{
if (host.RootComponent is ContainerControl rootContainer)
{
this.ContainerControl = rootContainer;
}
}
}
}
}
#endregion
#region Private Properties
private Form? Form
{
set
{
if (this.form != value)
{
if (this.form != null)
{
// Detach from old form events
this.form.Load -= this.loadHandler;
this.form.FormClosed -= this.closedHandler;
}
this.form = value;
if (this.form != null)
{
// Create event handlers
if (this.loadHandler == null)
{
this.loadHandler = this.OnFormLoad;
}
if (this.closedHandler == null)
{
this.closedHandler = this.OnFormClosed;
}
// Attach to new form events
this.form.Load += this.loadHandler;
this.form.FormClosed += this.closedHandler;
}
}
}
}
#endregion
#region Public Methods
/// <summary>
/// Used to explicitly load the form's settings if <see cref="AutoLoad"/> is false.
/// </summary>
/// <returns>True if the previous settings were re-loaded;
/// False if no previous settings existed.</returns>
public bool Load()
{
bool result = false;
Conditions.RequireState(this.form != null, "Load requires a non-null Form.");
if (!this.DesignMode)
{
using (ISettingsStore store = ApplicationInfo.CreateUserSettingsStore())
{
ISettingsNode? formLayoutNode = this.GetFormLayoutNode(store, false);
if (formLayoutNode != null)
{
result = true;
int left = formLayoutNode.GetValue("Left", this.form.Left);
int top = formLayoutNode.GetValue("Top", this.form.Top);
int width = formLayoutNode.GetValue("Width", this.form.Width);
int height = formLayoutNode.GetValue("Height", this.form.Height);
FormWindowState state = formLayoutNode.GetValue("WindowState", this.form.WindowState);
this.form.SuspendLayout();
try
{
this.form.Location = new Point(left, top);
if (this.form.FormBorderStyle == FormBorderStyle.Sizable || this.form.FormBorderStyle == FormBorderStyle.SizableToolWindow)
{
this.form.Size = new Size(width, height);
}
// If the form's current state isn't Normal, then it was launched from a
// shortcut or command line START command to be Minimized or Maximized.
// In those cases, we don't want to override the state.
if (this.form.WindowState == FormWindowState.Normal &&
(this.AllowLoadMinimized || state != FormWindowState.Minimized))
{
this.form.WindowState = state;
}
}
finally
{
this.form.ResumeLayout();
}
// Make sure the window is somewhere on one of the screens.
if (!SystemInformation.VirtualScreen.Contains(left, top))
{
Point point = SystemInformation.VirtualScreen.Location;
const int DefaultOffset = 20;
point.Offset(DefaultOffset, DefaultOffset);
this.form.DesktopLocation = point;
}
}
// Fire the internal event first
var eventHandler = this.InternalLoadSettings;
eventHandler?.Invoke(this, new SettingsEventArgs(store.RootNode));
eventHandler = this.LoadSettings;
eventHandler?.Invoke(this, new SettingsEventArgs(store.RootNode));
}
}
return result;
}
/// <summary>
/// Used to explicitly save the form's settings if <see cref="AutoSave"/> is false.
/// </summary>
public void Save()
{
Conditions.RequireState(this.form != null, "Save requires a non-null Form.");
if (!this.DesignMode)
{
using (ISettingsStore store = ApplicationInfo.CreateUserSettingsStore())
{
ISettingsNode? formLayoutNode = this.GetFormLayoutNode(store, true);
if (formLayoutNode != null)
{
// If the form is currently minimized or maximized, then pulling the form's current Bounds
// will return values we don't want to store (e.g., -32000 or full screen). We always want
// the Normal window position, so we have to make a Windows API call to get that reliably.
Rectangle bounds = NativeMethods.GetNormalWindowBounds(this.form);
formLayoutNode.SetValue("Left", bounds.Left);
formLayoutNode.SetValue("Top", bounds.Top);
formLayoutNode.SetValue("Width", bounds.Width);
formLayoutNode.SetValue("Height", bounds.Height);
formLayoutNode.SetValue("WindowState", this.form.WindowState);
}
// Fire the public event first.
var eventHandler = this.SaveSettings;
eventHandler?.Invoke(this, new SettingsEventArgs(store.RootNode));
eventHandler = this.InternalSaveSettings;
eventHandler?.Invoke(this, new SettingsEventArgs(store.RootNode));
// Make sure the settings get saved out.
store.Save();
}
}
}
#endregion
#region Private Methods
private ISettingsNode? GetFormLayoutNode(ISettingsStore store, bool createIfNotFound)
{
ISettingsNode? result = store.RootNode;
if (!string.IsNullOrEmpty(this.SettingsNodeName))
{
result = createIfNotFound ? result.GetSubNode(this.SettingsNodeName) : result.TryGetSubNode(this.SettingsNodeName);
}
return result;
}
private void OnFormLoad(object? sender, EventArgs e)
{
if (this.AutoLoad)
{
this.Load();
}
}
private void OnFormClosed(object? sender, FormClosedEventArgs e)
{
if (this.AutoSave)
{
this.Save();
}
}
#endregion
}
}