Added feature to save search criteria into settings

This commit is contained in:
Rich 2010-01-08 14:34:59 +00:00
parent c7294d5ffd
commit 70a88b5638
2 changed files with 29 additions and 1 deletions

View File

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.3074
// Runtime Version:2.0.50727.4200
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@ -33,5 +33,27 @@ namespace Volian.Controls.Library.Properties {
this["BookMarks"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Collections.Specialized.StringCollection SearchList {
get {
return ((global::System.Collections.Specialized.StringCollection)(this["SearchList"]));
}
set {
this["SearchList"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public global::System.Collections.Specialized.StringCollection SearchAList {
get {
return ((global::System.Collections.Specialized.StringCollection)(this["SearchAList"]));
}
set {
this["SearchAList"] = value;
}
}
}
}

View File

@ -5,5 +5,11 @@
<Setting Name="BookMarks" Type="System.Collections.Specialized.StringCollection" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="SearchList" Type="System.Collections.Specialized.StringCollection" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="SearchAList" Type="System.Collections.Specialized.StringCollection" Scope="User">
<Value Profile="(Default)" />
</Setting>
</Settings>
</SettingsFile>