Замена на ToolsDesktop

This commit is contained in:
kotcheshir73 2022-03-18 22:48:14 +04:00
parent 04e6e6766b
commit d6c066ec0f
137 changed files with 352 additions and 352 deletions

View File

@ -1,5 +1,5 @@

namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
partial class AbstractBaseControl
{

View File

@ -1,9 +1,9 @@
using DesktopTools.Interfaces;
using ToolsDesktop.Interfaces;
using ToolsModule.Extensions;
using System;
using System.Windows.Forms;
namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
/// <summary>
/// Описание контрола для работы со значением свойства класса

View File

@ -1,5 +1,5 @@

namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
partial class BaseControlBool
{

View File

@ -1,8 +1,8 @@
using DesktopTools.Interfaces;
using ToolsDesktop.Interfaces;
using System;
using System.Windows.Forms;
namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
/// <summary>
/// Контрол, предоставляющий работу с bool-полем

View File

@ -1,5 +1,5 @@

namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
partial class BaseControlDateTime
{

View File

@ -1,9 +1,9 @@
using DesktopTools.Interfaces;
using ToolsDesktop.Interfaces;
using ToolsModule.Extensions;
using System;
using System.Windows.Forms;
namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
/// <summary>
/// Контрол, предоставляющий работу с датой

View File

@ -1,5 +1,5 @@

namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
partial class BaseControlDecimal
{

View File

@ -1,8 +1,8 @@
using DesktopTools.Interfaces;
using ToolsDesktop.Interfaces;
using System;
using System.Windows.Forms;
namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
/// <summary>
/// Контрол, предоставляющий работу с вещественным полем

View File

@ -1,5 +1,5 @@

namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
partial class BaseControlEnum
{

View File

@ -1,9 +1,9 @@
using DesktopTools.Interfaces;
using ToolsDesktop.Interfaces;
using System;
using System.Drawing;
using System.Windows.Forms;
namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
/// <summary>
/// Контрол, предоставляющий работу с перечислениями

View File

@ -1,5 +1,5 @@

namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
partial class BaseControlGuid
{
@ -32,7 +32,7 @@ namespace DesktopTools.BaseControls
//
// buttonClear
//
this.buttonClear.BackgroundImage = global::DesktopTools.Properties.Resources.Clear;
this.buttonClear.BackgroundImage = global::ToolsDesktop.Properties.Resources.Clear;
this.buttonClear.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.buttonClear.Dock = System.Windows.Forms.DockStyle.Right;
this.buttonClear.Location = new System.Drawing.Point(74, 12);

View File

@ -1,11 +1,11 @@
using DesktopTools.Enums;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Enums;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using System;
using System.Drawing;
using System.Windows.Forms;
namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
public partial class BaseControlGuid : AbstractBaseControl, IBaseControl
{

View File

@ -1,7 +1,7 @@

using System.Windows.Forms;
namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
partial class BaseControlImage
{

View File

@ -1,10 +1,10 @@
using DesktopTools.Interfaces;
using ToolsDesktop.Interfaces;
using System;
using System.Drawing;
using System.IO;
using System.Windows.Forms;
namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
/// <summary>
/// Контрол, предоставляющий работу с изображением

View File

@ -1,5 +1,5 @@

namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
partial class BaseControlInt
{

View File

@ -1,8 +1,8 @@
using DesktopTools.Interfaces;
using ToolsDesktop.Interfaces;
using System;
using System.Windows.Forms;
namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
/// <summary>
/// Контрол, предоставляющий работу с целочисленным полем

View File

@ -1,5 +1,5 @@

namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
partial class BaseControlString
{

View File

@ -1,9 +1,9 @@
using DesktopTools.Interfaces;
using ToolsDesktop.Interfaces;
using ToolsModule.Extensions;
using System;
using System.Drawing;
namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
/// <summary>
/// Контрол, предоставляющий работу с однострочным текстовым полем

View File

@ -1,5 +1,5 @@

namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
partial class BaseControlText
{

View File

@ -1,9 +1,9 @@
using DesktopTools.Interfaces;
using ToolsDesktop.Interfaces;
using ToolsModule.Extensions;
using System;
using System.Drawing;
namespace DesktopTools.BaseControls
namespace ToolsDesktop.BaseControls
{
/// <summary>
/// Контрол, предоставляющий работу с текстовым полем на несколько строк

View File

@ -1,4 +1,4 @@
using DesktopTools.Interfaces;
using ToolsDesktop.Interfaces;
using ToolsModule.Extensions;
using System;
using System.Collections.Generic;
@ -6,7 +6,7 @@ using System.IO;
using System.Linq;
using System.Reflection;
namespace DesktopTools.BusinessLogics
namespace ToolsDesktop.BusinessLogics
{
public static partial class DesktopLoader
{

View File

@ -1,4 +1,4 @@
namespace DesktopTools.Enums
namespace ToolsDesktop.Enums
{
/// <summary>
/// С какой целью открыт контрол

View File

@ -1,4 +1,4 @@
namespace DesktopTools.Enums
namespace ToolsDesktop.Enums
{
/// <summary>
/// Имена кнопок на основной панеле контрола для работы со списком сущности

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace DesktopTools.Helpers
namespace ToolsDesktop.Helpers
{
public static class DialogHelper
{

View File

@ -1,4 +1,4 @@
namespace DesktopTools.Interfaces
namespace ToolsDesktop.Interfaces
{
/// <summary>
/// Работа с контролами вывода свойства элемента

View File

@ -1,8 +1,8 @@
using DesktopTools.Models;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
namespace DesktopTools.Interfaces
namespace ToolsDesktop.Interfaces
{
/// <summary>
/// Основные параметры для контрола

View File

@ -1,6 +1,6 @@
using System;
namespace DesktopTools.Interfaces
namespace ToolsDesktop.Interfaces
{
/// <summary>
/// параметры для контрола-налсденика

View File

@ -1,4 +1,4 @@
namespace DesktopTools.Interfaces
namespace ToolsDesktop.Interfaces
{
/// <summary>
/// параметры для контрола-списка

View File

@ -1,6 +1,6 @@
using System;
namespace DesktopTools.Interfaces
namespace ToolsDesktop.Interfaces
{
/// <summary>
/// Методы для работы с контролом при выборе элемента из списка

View File

@ -1,6 +1,6 @@
using DesktopTools.Models;
using ToolsDesktop.Models;
namespace DesktopTools.Interfaces
namespace ToolsDesktop.Interfaces
{
/// <summary>
/// Работа с контролом элемента

View File

@ -1,7 +1,7 @@
using DesktopTools.Models;
using ToolsDesktop.Models;
using System;
namespace DesktopTools.Interfaces
namespace ToolsDesktop.Interfaces
{
/// <summary>
/// Работа с контролом списка

View File

@ -1,6 +1,6 @@
using DesktopTools.Models;
using ToolsDesktop.Models;
namespace DesktopTools.Interfaces
namespace ToolsDesktop.Interfaces
{
/// <summary>
/// Работа с generic-контролом элемента

View File

@ -1,6 +1,6 @@
using DesktopTools.Models;
using ToolsDesktop.Models;
namespace DesktopTools.Interfaces
namespace ToolsDesktop.Interfaces
{
/// <summary>
/// Работа с generic-контролом списка

View File

@ -1,7 +1,7 @@
using DesktopTools.Models;
using ToolsDesktop.Models;
using System.Collections.Generic;
namespace DesktopTools.Interfaces
namespace ToolsDesktop.Interfaces
{
/// <summary>
/// Интерфейс для регистрации контролов для десктопного приложения

View File

@ -1,5 +1,5 @@

namespace DesktopTools.Controls
namespace ToolsDesktop.Controls
{
partial class GenericControlEntityElement<G, S, L, E, BL>
{

View File

@ -1,8 +1,8 @@
using DesktopTools.BaseControls;
using DesktopTools.Enums;
using DesktopTools.Helpers;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.BaseControls;
using ToolsDesktop.Enums;
using ToolsDesktop.Helpers;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Attributes;
using ToolsModule.BindingModels;
using ToolsModule.BusinessLogics;
@ -16,7 +16,7 @@ using System.Threading.Tasks;
using System.Windows.Forms;
using System.Xml.Linq;
namespace DesktopTools.Controls
namespace ToolsDesktop.Controls
{
public partial class GenericControlEntityElement<G, S, L, E, BL> : MainControlViewEntityElement, IControlViewEntityElement
where G : GetBindingModel, new()

View File

@ -1,4 +1,4 @@
namespace DesktopTools.Controls
namespace ToolsDesktop.Controls
{
partial class GenericControlEntityList<G, S, L, E, BL>
{

View File

@ -1,7 +1,7 @@
using DesktopTools.Enums;
using DesktopTools.Helpers;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Enums;
using ToolsDesktop.Helpers;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Attributes;
using ToolsModule.BindingModels;
using ToolsModule.BusinessLogics;
@ -15,7 +15,7 @@ using System.Reflection;
using System.Windows.Forms;
using System.Xml.Linq;
namespace DesktopTools.Controls
namespace ToolsDesktop.Controls
{
public partial class GenericControlEntityList<G, S, L, E, BL> : MainControlViewEntityList, IControlViewEntityList
where G : GetBindingModel, new()

View File

@ -1,5 +1,5 @@

namespace DesktopTools.Controls
namespace ToolsDesktop.Controls
{
partial class MainControlViewEntityElement
{
@ -57,7 +57,7 @@ namespace DesktopTools.Controls
// toolStripButtonSave
//
this.toolStripButtonSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonSave.Image = global::DesktopTools.Properties.Resources.Save;
this.toolStripButtonSave.Image = global::ToolsDesktop.Properties.Resources.Save;
this.toolStripButtonSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonSave.Name = "toolStripButtonSave";
this.toolStripButtonSave.Size = new System.Drawing.Size(23, 22);
@ -66,7 +66,7 @@ namespace DesktopTools.Controls
// toolStripButtonReload
//
this.toolStripButtonReload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonReload.Image = global::DesktopTools.Properties.Resources.Reload;
this.toolStripButtonReload.Image = global::ToolsDesktop.Properties.Resources.Reload;
this.toolStripButtonReload.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonReload.Name = "toolStripButtonReload";
this.toolStripButtonReload.Size = new System.Drawing.Size(23, 22);
@ -76,7 +76,7 @@ namespace DesktopTools.Controls
//
this.toolStripButtonClose.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolStripButtonClose.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonClose.Image = global::DesktopTools.Properties.Resources.Close;
this.toolStripButtonClose.Image = global::ToolsDesktop.Properties.Resources.Close;
this.toolStripButtonClose.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonClose.Name = "toolStripButtonClose";
this.toolStripButtonClose.Size = new System.Drawing.Size(23, 22);

View File

@ -1,10 +1,10 @@
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Windows.Forms;
namespace DesktopTools.Controls
namespace ToolsDesktop.Controls
{
public partial class MainControlViewEntityElement : UserControl, IControl, IControlChildEntity
{

View File

@ -1,5 +1,5 @@

namespace DesktopTools.Controls
namespace ToolsDesktop.Controls
{
partial class MainControlViewEntityList
{
@ -97,7 +97,7 @@ namespace DesktopTools.Controls
//
// toolStripButtonAdd
//
this.toolStripButtonAdd.Image = global::DesktopTools.Properties.Resources.Add;
this.toolStripButtonAdd.Image = global::ToolsDesktop.Properties.Resources.Add;
this.toolStripButtonAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonAdd.Name = "toolStripButtonAdd";
this.toolStripButtonAdd.Size = new System.Drawing.Size(79, 22);
@ -110,7 +110,7 @@ namespace DesktopTools.Controls
//
// toolStripButtonUpd
//
this.toolStripButtonUpd.Image = global::DesktopTools.Properties.Resources.Upd;
this.toolStripButtonUpd.Image = global::ToolsDesktop.Properties.Resources.Upd;
this.toolStripButtonUpd.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonUpd.Name = "toolStripButtonUpd";
this.toolStripButtonUpd.Size = new System.Drawing.Size(81, 22);
@ -123,7 +123,7 @@ namespace DesktopTools.Controls
//
// toolStripButtonDel
//
this.toolStripButtonDel.Image = global::DesktopTools.Properties.Resources.Del;
this.toolStripButtonDel.Image = global::ToolsDesktop.Properties.Resources.Del;
this.toolStripButtonDel.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonDel.Name = "toolStripButtonDel";
this.toolStripButtonDel.Size = new System.Drawing.Size(71, 22);
@ -136,7 +136,7 @@ namespace DesktopTools.Controls
//
// toolStripButtonSearch
//
this.toolStripButtonSearch.Image = global::DesktopTools.Properties.Resources.Search;
this.toolStripButtonSearch.Image = global::ToolsDesktop.Properties.Resources.Search;
this.toolStripButtonSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonSearch.Name = "toolStripButtonSearch";
this.toolStripButtonSearch.Size = new System.Drawing.Size(62, 22);
@ -149,7 +149,7 @@ namespace DesktopTools.Controls
//
// toolStripButtonRef
//
this.toolStripButtonRef.Image = global::DesktopTools.Properties.Resources.Ref;
this.toolStripButtonRef.Image = global::ToolsDesktop.Properties.Resources.Ref;
this.toolStripButtonRef.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonRef.Name = "toolStripButtonRef";
this.toolStripButtonRef.Size = new System.Drawing.Size(81, 22);
@ -172,7 +172,7 @@ namespace DesktopTools.Controls
//
this.toolStripButtonClose.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolStripButtonClose.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonClose.Image = global::DesktopTools.Properties.Resources.Close;
this.toolStripButtonClose.Image = global::ToolsDesktop.Properties.Resources.Close;
this.toolStripButtonClose.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonClose.Name = "toolStripButtonClose";
this.toolStripButtonClose.Size = new System.Drawing.Size(23, 22);
@ -267,7 +267,7 @@ namespace DesktopTools.Controls
// toolStripButtonPrev
//
this.toolStripButtonPrev.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonPrev.Image = global::DesktopTools.Properties.Resources.Left;
this.toolStripButtonPrev.Image = global::ToolsDesktop.Properties.Resources.Left;
this.toolStripButtonPrev.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonPrev.Name = "toolStripButtonPrev";
this.toolStripButtonPrev.Size = new System.Drawing.Size(23, 22);
@ -306,7 +306,7 @@ namespace DesktopTools.Controls
// toolStripButtonNext
//
this.toolStripButtonNext.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonNext.Image = global::DesktopTools.Properties.Resources.Right;
this.toolStripButtonNext.Image = global::ToolsDesktop.Properties.Resources.Right;
this.toolStripButtonNext.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonNext.Name = "toolStripButtonNext";
this.toolStripButtonNext.Size = new System.Drawing.Size(23, 22);

View File

@ -1,10 +1,10 @@
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Windows.Forms;
namespace DesktopTools.Controls
namespace ToolsDesktop.Controls
{
public partial class MainControlViewEntityList : UserControl, IControl, IControlChildEntity, IControlEntityList, IControlEntitySelectable
{

View File

@ -1,7 +1,7 @@
using DesktopTools.Enums;
using ToolsDesktop.Enums;
using System;
namespace DesktopTools.Models
namespace ToolsDesktop.Models
{
/// <summary>
/// Данные, передаваемый при открытии контрола

View File

@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
namespace DesktopTools.Models
namespace ToolsDesktop.Models
{
/// <summary>
/// Настройки для контрола вывода элемента сущности

View File

@ -1,8 +1,8 @@
using DesktopTools.Enums;
using ToolsDesktop.Enums;
using System;
using System.Collections.Generic;
namespace DesktopTools.Models
namespace ToolsDesktop.Models
{
/// <summary>
/// Настройки для контрола вывода списка записей сущности

View File

@ -1,4 +1,4 @@
namespace DesktopTools.Models
namespace ToolsDesktop.Models
{
/// <summary>
/// Модель для выпадабщего списка пагинации

View File

@ -1,7 +1,7 @@
using DesktopTools.Interfaces;
using ToolsDesktop.Interfaces;
using System;
namespace DesktopTools.Models
namespace ToolsDesktop.Models
{
public class WindowDesktopExtensionControlModel
{

View File

@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace DesktopTools.Properties {
namespace ToolsDesktop.Properties {
using System;
@ -22,7 +22,7 @@ namespace DesktopTools.Properties {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Resources {
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
@ -36,10 +36,10 @@ namespace DesktopTools.Properties {
/// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("DesktopTools.Properties.Resources", typeof(Resources).Assembly);
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ToolsDesktop.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
@ -51,7 +51,7 @@ namespace DesktopTools.Properties {
/// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture {
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
@ -63,7 +63,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Add {
internal static System.Drawing.Bitmap Add {
get {
object obj = ResourceManager.GetObject("Add", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -73,7 +73,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Clear {
internal static System.Drawing.Bitmap Clear {
get {
object obj = ResourceManager.GetObject("Clear", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -83,7 +83,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Close {
internal static System.Drawing.Bitmap Close {
get {
object obj = ResourceManager.GetObject("Close", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -93,7 +93,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Del {
internal static System.Drawing.Bitmap Del {
get {
object obj = ResourceManager.GetObject("Del", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -103,7 +103,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Down {
internal static System.Drawing.Bitmap Down {
get {
object obj = ResourceManager.GetObject("Down", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -113,7 +113,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Left {
internal static System.Drawing.Bitmap Left {
get {
object obj = ResourceManager.GetObject("Left", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -123,7 +123,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Ref {
internal static System.Drawing.Bitmap Ref {
get {
object obj = ResourceManager.GetObject("Ref", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -133,7 +133,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Reload {
internal static System.Drawing.Bitmap Reload {
get {
object obj = ResourceManager.GetObject("Reload", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -143,7 +143,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Right {
internal static System.Drawing.Bitmap Right {
get {
object obj = ResourceManager.GetObject("Right", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -153,7 +153,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Save {
internal static System.Drawing.Bitmap Save {
get {
object obj = ResourceManager.GetObject("Save", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -163,7 +163,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Search {
internal static System.Drawing.Bitmap Search {
get {
object obj = ResourceManager.GetObject("Search", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -173,7 +173,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Up {
internal static System.Drawing.Bitmap Up {
get {
object obj = ResourceManager.GetObject("Up", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
@ -183,7 +183,7 @@ namespace DesktopTools.Properties {
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
public static System.Drawing.Bitmap Upd {
internal static System.Drawing.Bitmap Upd {
get {
object obj = ResourceManager.GetObject("Upd", resourceCulture);
return ((System.Drawing.Bitmap)(obj));

View File

@ -112,49 +112,49 @@
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="Ref" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Ref.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="Add" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Add.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Right" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Right.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Upd" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Upd.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Left" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Left.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
<data name="Clear" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Clear.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Close" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Close.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Search" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Search.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Up" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Up.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Del" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Del.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Down" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Down.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Add" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Add.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
<data name="Left" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Left.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Save" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Save.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Clear" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Clear.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
<data name="Ref" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Ref.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Reload" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Reload.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Right" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Right.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Save" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Save.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Search" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Search.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Up" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Up.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Upd" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Upd.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 412 B

After

Width:  |  Height:  |  Size: 412 B

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

Before

Width:  |  Height:  |  Size: 563 B

After

Width:  |  Height:  |  Size: 563 B

View File

@ -19,7 +19,7 @@
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>

View File

@ -1,6 +1,6 @@
using DepartmentWindowsDesktop.EntityControls;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.BindingModels;
using ToolsModule.BusinessLogics;
using ToolsModule.Enums;

View File

@ -6,7 +6,7 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Common\DesktopTools\DesktopTools.csproj" />
<ProjectReference Include="..\..\Common\ToolsDesktop\ToolsDesktop.csproj" />
<ProjectReference Include="..\..\Security\SecurityBusinessLogic\SecurityBusinessLogic.csproj" />
<ProjectReference Include="..\DepartmentBusinessLogic\DepartmentBusinessLogic.csproj" />
</ItemGroup>

View File

@ -1,10 +1,10 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Helpers;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Helpers;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using System;
using System.Collections.Generic;
using System.Windows.Forms;

View File

@ -1,11 +1,11 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Enums;
using DesktopTools.Helpers;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Enums;
using ToolsDesktop.Helpers;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Collections.Generic;

View File

@ -1,9 +1,9 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using System;
namespace DepartmentWindowsDesktop.EntityControls

View File

@ -2,10 +2,10 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Enums;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Enums;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Collections.Generic;

View File

@ -1,9 +1,9 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using System;
namespace DepartmentWindowsDesktop.EntityControls

View File

@ -1,10 +1,10 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Enums;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Enums;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Collections.Generic;

View File

@ -1,9 +1,9 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using System;
namespace DepartmentWindowsDesktop.EntityControls

View File

@ -1,10 +1,10 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Enums;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Enums;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Collections.Generic;

View File

@ -1,9 +1,9 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using System;
namespace DepartmentWindowsDesktop.EntityControls

View File

@ -1,10 +1,10 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.BaseControls;
using DesktopTools.Controls;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.BaseControls;
using ToolsDesktop.Controls;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.BusinessLogics;
using ToolsModule.Enums;
using System;

View File

@ -1,9 +1,9 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using System;
namespace DepartmentWindowsDesktop.EntityControls

View File

@ -1,10 +1,10 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Enums;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Enums;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Collections.Generic;

View File

@ -1,9 +1,9 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using System;
namespace DepartmentWindowsDesktop.EntityControls

View File

@ -1,10 +1,10 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Enums;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Enums;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Collections.Generic;

View File

@ -1,11 +1,11 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.BaseControls;
using DesktopTools.Controls;
using DesktopTools.Helpers;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.BaseControls;
using ToolsDesktop.Controls;
using ToolsDesktop.Helpers;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.BusinessLogics;
using ToolsModule.Extensions;
using SecurityBusinessLogic.BindingModels;

View File

@ -1,10 +1,10 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Enums;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Enums;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Collections.Generic;

View File

@ -1,9 +1,9 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using System;
namespace DepartmentWindowsDesktop.EntityControls

View File

@ -1,10 +1,10 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Enums;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Enums;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Collections.Generic;

View File

@ -1,11 +1,11 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.BaseControls;
using DesktopTools.Controls;
using DesktopTools.Helpers;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.BaseControls;
using ToolsDesktop.Controls;
using ToolsDesktop.Helpers;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.BusinessLogics;
using ToolsModule.Extensions;
using SecurityBusinessLogic.BindingModels;

View File

@ -1,10 +1,10 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Enums;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Enums;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Collections.Generic;

View File

@ -1,9 +1,9 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using System;
namespace DepartmentWindowsDesktop.EntityControls

View File

@ -1,10 +1,10 @@
using DepartmentBusinessLogic.BindingModels;
using DepartmentBusinessLogic.BusinessLogics;
using DepartmentBusinessLogic.ViewModels;
using DesktopTools.Controls;
using DesktopTools.Enums;
using DesktopTools.Interfaces;
using DesktopTools.Models;
using ToolsDesktop.Controls;
using ToolsDesktop.Enums;
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.Enums;
using System;
using System.Collections.Generic;

Some files were not shown because too many files have changed in this diff Show More