Никита
6 years ago
8 changed files with 174 additions and 10 deletions
@ -1,6 +1,24 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<configuration> |
|||
<configSections> |
|||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" > |
|||
<section name="fileFinder.MainSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" /> |
|||
</sectionGroup> |
|||
</configSections> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> |
|||
</startup> |
|||
<userSettings> |
|||
<fileFinder.MainSettings> |
|||
<setting name="urlDirectory" serializeAs="String"> |
|||
<value>C:\nextcloud\</value> |
|||
</setting> |
|||
<setting name="fileNameQuery" serializeAs="String"> |
|||
<value>*</value> |
|||
</setting> |
|||
<setting name="fileInnerQuery" serializeAs="String"> |
|||
<value>sh</value> |
|||
</setting> |
|||
</fileFinder.MainSettings> |
|||
</userSettings> |
|||
</configuration> |
@ -0,0 +1,22 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace fileFinder |
|||
{ |
|||
class HintModel |
|||
{ |
|||
public HintModel () |
|||
{ |
|||
isDirectoryHintActive = true; |
|||
isNameQueryHintActive = true; |
|||
isInnerQueryHintActive = true; |
|||
} |
|||
|
|||
public bool isDirectoryHintActive { get; set; } |
|||
public bool isNameQueryHintActive { get; set; } |
|||
public bool isInnerQueryHintActive { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,62 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// Этот код создан программой.
|
|||
// Исполняемая версия:4.0.30319.42000
|
|||
//
|
|||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
|||
// повторной генерации кода.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace fileFinder { |
|||
|
|||
|
|||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] |
|||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.8.0.0")] |
|||
internal sealed partial class MainSettings : global::System.Configuration.ApplicationSettingsBase { |
|||
|
|||
private static MainSettings defaultInstance = ((MainSettings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new MainSettings()))); |
|||
|
|||
public static MainSettings Default { |
|||
get { |
|||
return defaultInstance; |
|||
} |
|||
} |
|||
|
|||
[global::System.Configuration.UserScopedSettingAttribute()] |
|||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|||
[global::System.Configuration.DefaultSettingValueAttribute("C:\\nextcloud\\")] |
|||
public string urlDirectory { |
|||
get { |
|||
return ((string)(this["urlDirectory"])); |
|||
} |
|||
set { |
|||
this["urlDirectory"] = value; |
|||
} |
|||
} |
|||
|
|||
[global::System.Configuration.UserScopedSettingAttribute()] |
|||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|||
[global::System.Configuration.DefaultSettingValueAttribute("*")] |
|||
public string fileNameQuery { |
|||
get { |
|||
return ((string)(this["fileNameQuery"])); |
|||
} |
|||
set { |
|||
this["fileNameQuery"] = value; |
|||
} |
|||
} |
|||
|
|||
[global::System.Configuration.UserScopedSettingAttribute()] |
|||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|||
[global::System.Configuration.DefaultSettingValueAttribute("sh")] |
|||
public string fileInnerQuery { |
|||
get { |
|||
return ((string)(this["fileInnerQuery"])); |
|||
} |
|||
set { |
|||
this["fileInnerQuery"] = value; |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,28 @@ |
|||
namespace fileFinder { |
|||
|
|||
|
|||
// Этот класс позволяет обрабатывать определенные события в классе параметров:
|
|||
// Событие SettingChanging возникает перед изменением значения параметра.
|
|||
// Событие PropertyChanged возникает после изменения значения параметра.
|
|||
// Событие SettingsLoaded возникает после загрузки значений параметров.
|
|||
// Событие SettingsSaving возникает перед сохранением значений параметров.
|
|||
internal sealed partial class MainSettings { |
|||
|
|||
public MainSettings() { |
|||
// // Для добавления обработчиков событий для сохранения и изменения параметров раскомментируйте приведенные ниже строки:
|
|||
//
|
|||
// this.SettingChanging += this.SettingChangingEventHandler;
|
|||
//
|
|||
// this.SettingsSaving += this.SettingsSavingEventHandler;
|
|||
//
|
|||
} |
|||
|
|||
private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) { |
|||
// Добавьте здесь код для обработки события SettingChangingEvent.
|
|||
} |
|||
|
|||
private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) { |
|||
// Добавьте здесь код для обработки события SettingsSaving.
|
|||
} |
|||
} |
|||
} |
@ -0,0 +1,15 @@ |
|||
<?xml version='1.0' encoding='utf-8'?> |
|||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="fileFinder" GeneratedClassName="MainSettings"> |
|||
<Profiles /> |
|||
<Settings> |
|||
<Setting Name="urlDirectory" Type="System.String" Scope="User"> |
|||
<Value Profile="(Default)">C:\nextcloud\</Value> |
|||
</Setting> |
|||
<Setting Name="fileNameQuery" Type="System.String" Scope="User"> |
|||
<Value Profile="(Default)">*</Value> |
|||
</Setting> |
|||
<Setting Name="fileInnerQuery" Type="System.String" Scope="User"> |
|||
<Value Profile="(Default)">sh</Value> |
|||
</Setting> |
|||
</Settings> |
|||
</SettingsFile> |
Loading…
Reference in new issue