Mercurial > silverbladetech
comparison Chronosv2/source/Configuration/WidgetsSectionHandler.cs @ 10:443821e55f06
Initial cleaned up add from Codeplex files
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Tue, 21 Feb 2012 17:25:44 +0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
9:904a9faadf8b | 10:443821e55f06 |
---|---|
1 using System.Configuration; | |
2 | |
3 namespace Chronos.Configuration | |
4 { | |
5 /// <summary> | |
6 /// Widget configuration section handler | |
7 /// </summary> | |
8 public sealed class WidgetsSectionHandler | |
9 : ConfigurationSection | |
10 { | |
11 #region · Properties · | |
12 | |
13 /// <summary> | |
14 /// Gets the list of configured widgets. | |
15 /// </summary> | |
16 /// <value>The desktops.</value> | |
17 [ConfigurationProperty("widgets", IsDefaultCollection = true)] | |
18 public WidgetConfigurationElementCollection Widgets | |
19 { | |
20 get | |
21 { | |
22 return (WidgetConfigurationElementCollection)base["widgets"]; | |
23 } | |
24 } | |
25 | |
26 #endregion | |
27 | |
28 #region · Constructors · | |
29 | |
30 /// <summary> | |
31 /// Initializes a new instance of the <see cref="WidgetsSectionHandler"/> class. | |
32 /// </summary> | |
33 public WidgetsSectionHandler() | |
34 { | |
35 } | |
36 | |
37 #endregion | |
38 } | |
39 } |