mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
- Add support for filtering by category
- Break up main window into partials instead of using regions
This commit is contained in:
18
Application/Properties/Resources.Designer.cs
generated
18
Application/Properties/Resources.Designer.cs
generated
@@ -96,6 +96,15 @@ namespace FeedCenter.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to < all >.
|
||||
/// </summary>
|
||||
public static string AllCategory {
|
||||
get {
|
||||
return ResourceManager.GetString("AllCategory", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
|
||||
/// </summary>
|
||||
@@ -196,6 +205,15 @@ namespace FeedCenter.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Category: {0}.
|
||||
/// </summary>
|
||||
public static string CategoryFilterHeader {
|
||||
get {
|
||||
return ResourceManager.GetString("CategoryFilterHeader", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Category.
|
||||
/// </summary>
|
||||
|
||||
@@ -517,4 +517,10 @@
|
||||
<data name="FeedChooserWindow" xml:space="preserve">
|
||||
<value>Choose Feed to Add</value>
|
||||
</data>
|
||||
<data name="AllCategory" xml:space="preserve">
|
||||
<value>< all ></value>
|
||||
</data>
|
||||
<data name="CategoryFilterHeader" xml:space="preserve">
|
||||
<value>Category: {0}</value>
|
||||
</data>
|
||||
</root>
|
||||
12
Application/Properties/Settings.Designer.cs
generated
12
Application/Properties/Settings.Designer.cs
generated
@@ -277,5 +277,17 @@ namespace FeedCenter.Properties {
|
||||
return ((string)(this["VersionLocation"]));
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("")]
|
||||
public string LastCategoryID {
|
||||
get {
|
||||
return ((string)(this["LastCategoryID"]));
|
||||
}
|
||||
set {
|
||||
this["LastCategoryID"] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -68,5 +68,8 @@
|
||||
<Setting Name="VersionLocation" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">http://server/FeedCenter/</Value>
|
||||
</Setting>
|
||||
<Setting Name="LastCategoryID" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)" />
|
||||
</Setting>
|
||||
</Settings>
|
||||
</SettingsFile>
|
||||
Reference in New Issue
Block a user