Никита Романенко (Dufander)
6 years ago
18 changed files with 310 additions and 292 deletions
@ -1,22 +0,0 @@ |
|||||
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; } |
|
||||
} |
|
||||
} |
|
@ -1,62 +0,0 @@ |
|||||
//------------------------------------------------------------------------------
|
|
||||
// <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 fileUrl { |
|
||||
get { |
|
||||
return ((string)(this["fileUrl"])); |
|
||||
} |
|
||||
set { |
|
||||
this["fileUrl"] = 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; |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,28 +0,0 @@ |
|||||
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.
|
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
<?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="fileUrl" 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> |
|
@ -1,71 +1,103 @@ |
|||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
// <auto-generated>
|
||||
// Этот код создан программным средством.
|
// Этот код создан программой.
|
||||
// Версия среды выполнения: 4.0.30319.42000
|
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
//
|
||||
// Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если
|
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// код создан повторно.
|
// повторной генерации кода.
|
||||
// </auto-generated>
|
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||
|
|
||||
namespace fileFinder.Properties |
namespace fileFinder.Properties { |
||||
{ |
using System; |
||||
|
|
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// Класс ресурсов со строгим типом для поиска локализованных строк и пр.
|
/// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д.
|
||||
/// </summary>
|
/// </summary>
|
||||
// Этот класс был автоматически создан при помощи StronglyTypedResourceBuilder
|
// Этот класс создан автоматически классом StronglyTypedResourceBuilder
|
||||
// класс с помощью таких средств, как ResGen или Visual Studio.
|
// с помощью такого средства, как ResGen или Visual Studio.
|
||||
// Для добавления или удаления члена измените файл .ResX, а затем перезапустите ResGen
|
// Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen
|
||||
// с параметром /str или заново постройте свой VS-проект.
|
// с параметром /str или перестройте свой проект VS.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] |
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] |
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] |
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] |
||||
internal class Resources |
internal class Resources { |
||||
{ |
|
||||
|
|
||||
private static global::System.Resources.ResourceManager resourceMan; |
private static global::System.Resources.ResourceManager resourceMan; |
||||
|
|
||||
private static global::System.Globalization.CultureInfo resourceCulture; |
private static global::System.Globalization.CultureInfo resourceCulture; |
||||
|
|
||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] |
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] |
||||
internal Resources() |
internal Resources() { |
||||
{ |
|
||||
} |
} |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// Возврат кэшированного экземпляра ResourceManager, используемого этим классом.
|
/// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом.
|
||||
/// </summary>
|
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] |
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] |
||||
internal static global::System.Resources.ResourceManager ResourceManager |
internal static global::System.Resources.ResourceManager ResourceManager { |
||||
{ |
get { |
||||
get |
if (object.ReferenceEquals(resourceMan, null)) { |
||||
{ |
|
||||
if ((resourceMan == null)) |
|
||||
{ |
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("fileFinder.Properties.Resources", typeof(Resources).Assembly); |
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("fileFinder.Properties.Resources", typeof(Resources).Assembly); |
||||
resourceMan = temp; |
resourceMan = temp; |
||||
} |
} |
||||
return resourceMan; |
return resourceMan; |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// Переопределяет свойство CurrentUICulture текущего потока для всех
|
/// Перезаписывает свойство CurrentUICulture текущего потока для всех
|
||||
/// подстановки ресурсов с помощью этого класса ресурсов со строгим типом.
|
/// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией.
|
||||
/// </summary>
|
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] |
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] |
||||
internal static global::System.Globalization.CultureInfo Culture |
internal static global::System.Globalization.CultureInfo Culture { |
||||
{ |
get { |
||||
get |
|
||||
{ |
|
||||
return resourceCulture; |
return resourceCulture; |
||||
} |
} |
||||
set |
set { |
||||
{ |
|
||||
resourceCulture = value; |
resourceCulture = value; |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
||||
|
/// </summary>
|
||||
|
internal static System.Drawing.Bitmap File { |
||||
|
get { |
||||
|
object obj = ResourceManager.GetObject("File", resourceCulture); |
||||
|
return ((System.Drawing.Bitmap)(obj)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
||||
|
/// </summary>
|
||||
|
internal static System.Drawing.Bitmap Folder { |
||||
|
get { |
||||
|
object obj = ResourceManager.GetObject("Folder", resourceCulture); |
||||
|
return ((System.Drawing.Bitmap)(obj)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
||||
|
/// </summary>
|
||||
|
internal static System.Drawing.Bitmap OpenedFolder { |
||||
|
get { |
||||
|
object obj = ResourceManager.GetObject("OpenedFolder", resourceCulture); |
||||
|
return ((System.Drawing.Bitmap)(obj)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
|
||||
|
/// </summary>
|
||||
|
internal static System.Drawing.Bitmap Search { |
||||
|
get { |
||||
|
object obj = ResourceManager.GetObject("Search", resourceCulture); |
||||
|
return ((System.Drawing.Bitmap)(obj)); |
||||
|
} |
||||
|
} |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,30 +1,62 @@ |
|||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
// <auto-generated>
|
||||
// This code was generated by a tool.
|
// Этот код создан программой.
|
||||
// Runtime Version:4.0.30319.42000
|
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// the code is regenerated.
|
// повторной генерации кода.
|
||||
// </auto-generated>
|
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||
|
|
||||
namespace fileFinder.Properties |
namespace fileFinder.Properties { |
||||
{ |
|
||||
|
|
||||
|
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] |
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] |
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] |
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.8.0.0")] |
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase |
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { |
||||
{ |
|
||||
|
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); |
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); |
||||
|
|
||||
public static Settings Default |
public static Settings Default { |
||||
{ |
get { |
||||
get |
|
||||
{ |
|
||||
return defaultInstance; |
return defaultInstance; |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
|
[global::System.Configuration.UserScopedSettingAttribute()] |
||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
||||
|
[global::System.Configuration.DefaultSettingValueAttribute("C:\\nextcloud\\")] |
||||
|
public string fileUrl { |
||||
|
get { |
||||
|
return ((string)(this["fileUrl"])); |
||||
|
} |
||||
|
set { |
||||
|
this["fileUrl"] = 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; |
||||
|
} |
||||
|
} |
||||
} |
} |
||||
} |
} |
||||
|
@ -1,7 +1,15 @@ |
|||||
<?xml version='1.0' encoding='utf-8'?> |
<?xml version='1.0' encoding='utf-8'?> |
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)"> |
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="fileFinder.Properties" GeneratedClassName="Settings"> |
||||
<Profiles> |
<Profiles /> |
||||
<Profile Name="(Default)" /> |
<Settings> |
||||
</Profiles> |
<Setting Name="fileUrl" Type="System.String" Scope="User"> |
||||
<Settings /> |
<Value Profile="(Default)">C:\nextcloud\</Value> |
||||
</SettingsFile> |
</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> |
After Width: | Height: | Size: 596 B |
After Width: | Height: | Size: 476 B |
After Width: | Height: | Size: 647 B |
After Width: | Height: | Size: 700 B |
Loading…
Reference in new issue