├── .editorconfig ├── .gitignore ├── CodeWF.Toolbox.sln ├── Directory.Build.props ├── LICENSE ├── README-zh_CN.md ├── README.md ├── UpdateLog.md ├── src ├── CodeWF.Controls │ └── CodeWF.Controls.csproj ├── CodeWF.Core │ ├── CodeWF.Core.csproj │ ├── ConfigDB │ │ └── DBConst.cs │ ├── DialogNames.cs │ ├── HostIds.cs │ ├── IServices │ │ ├── IApplicationService.cs │ │ ├── IFileChooserService.cs │ │ └── INotificationService.cs │ ├── IToolMenuService.cs │ ├── Models │ │ ├── ToolMenuItem.cs │ │ └── ToolStatus.cs │ ├── RegionAdapters │ │ └── TabControlRegionAdapter.cs │ ├── RegionNames.cs │ ├── Services │ │ ├── FileChooserService.cs │ │ └── NotificationService.cs │ └── ToolMenuService.cs ├── CodeWF.Modules.AI │ ├── AIModule.cs │ ├── CodeWF - Backup.Modules.AI.csproj │ ├── CodeWF.Modules.AI.csproj │ ├── Entities │ │ └── TranslateLanguageEntity.cs │ ├── Helpers │ │ ├── ApiClient.cs │ │ └── ConfigHelper.cs │ ├── I18n │ │ ├── AIModule.en-US.xml │ │ ├── AIModule.ja-JP.xml │ │ ├── AIModule.zh-CN.xml │ │ ├── AIModule.zh-Hant.xml │ │ ├── Language.cs │ │ └── Language.tt │ ├── Icons.cs │ ├── Imports.cs │ ├── Models │ │ ├── AskBotRequest.cs │ │ ├── ChatGptOptions.cs │ │ ├── PolyTranslateRequest.cs │ │ └── Title2SlugRequest.cs │ ├── ViewModels │ │ ├── AskBotViewModel.cs │ │ ├── ChoiceLanguagesViewModel.cs │ │ ├── PolyTranslateViewModel.cs │ │ └── Title2SlugViewModel.cs │ └── Views │ │ ├── AskBotView.axaml │ │ ├── AskBotView.axaml.cs │ │ ├── ChoiceLanguagesView.axaml │ │ ├── ChoiceLanguagesView.axaml.cs │ │ ├── PolyTranslateView.axaml │ │ ├── PolyTranslateView.axaml.cs │ │ ├── Title2SlugView.axaml │ │ └── Title2SlugView.axaml.cs ├── CodeWF.Modules.Converter │ ├── CodeWF.Modules.Converter.csproj │ ├── ConverterModule.cs │ ├── I18n │ │ ├── ConverterModule.en-US.xml │ │ ├── ConverterModule.ja-JP.xml │ │ ├── ConverterModule.zh-CN.xml │ │ ├── ConverterModule.zh-Hant.xml │ │ ├── Language.cs │ │ └── Language.tt │ ├── Icons.cs │ ├── Models │ │ └── IconSize.cs │ ├── ViewModels │ │ ├── DateTimeConverterViewModel.cs │ │ ├── ImageToIconViewModel.cs │ │ ├── JsonToYamlViewModel.cs │ │ └── YamlToJsonViewModel.cs │ └── Views │ │ ├── DateTimeConverterView.axaml │ │ ├── DateTimeConverterView.axaml.cs │ │ ├── ImageToIconView.axaml │ │ ├── ImageToIconView.axaml.cs │ │ ├── JsonToYamlView.axaml │ │ ├── JsonToYamlView.axaml.cs │ │ ├── YamlToJsonView.axaml │ │ └── YamlToJsonView.axaml.cs ├── CodeWF.Modules.Development │ ├── Assets │ │ ├── OvertimeAlarm.png │ │ ├── OvertimeAll.png │ │ └── OvertimeNormal.png │ ├── CodeWF.Modules.Development.csproj │ ├── Converters │ │ ├── WarningKindDescriptionConverter.cs │ │ └── WarningKindImageConverter.cs │ ├── DevelopmentModule.cs │ ├── Entities │ │ └── JsonPrettifyEntity.cs │ ├── Helpers │ │ └── ConfigHelper.cs │ ├── I18n │ │ ├── DevelopmentModule.en-US.xml │ │ ├── DevelopmentModule.ja-JP.xml │ │ ├── DevelopmentModule.zh-CN.xml │ │ ├── DevelopmentModule.zh-Hant.xml │ │ ├── Language.cs │ │ └── Language.tt │ ├── Icons.cs │ ├── Jobs │ │ ├── DailyTimeJob.cs │ │ └── UpdateTimeJob.cs │ ├── Models │ │ └── WarningKind.cs │ ├── ViewModels │ │ ├── JsonPrettifyViewModel.cs │ │ ├── TestViewModel.cs │ │ └── YamlPrettifyViewModel.cs │ └── Views │ │ ├── JsonPrettifyView.axaml │ │ ├── JsonPrettifyView.axaml.cs │ │ ├── TestView.axaml │ │ ├── TestView.axaml.cs │ │ ├── YamlPrettifyView.axaml │ │ └── YamlPrettifyView.axaml.cs ├── CodeWF.Modules.XmlTranslatorManager │ ├── CodeWF.Modules.XmlTranslatorManager.csproj │ ├── I18n │ │ ├── Language.cs │ │ ├── Language.tt │ │ ├── XmlTranslatorManagerModule.en-US.xml │ │ ├── XmlTranslatorManagerModule.ja-JP.xml │ │ ├── XmlTranslatorManagerModule.zh-CN.xml │ │ └── XmlTranslatorManagerModule.zh-Hant.xml │ ├── Icons.cs │ ├── Models │ │ ├── Consts.cs │ │ ├── LanguageClassModel.cs │ │ ├── LanguageProperty.cs │ │ ├── LanguageXmlFileInfo.cs │ │ └── LanguageXmlModel.cs │ ├── README.zh-CN.md │ ├── ViewModels │ │ ├── ManageXMLFilesViewModel.cs │ │ └── MergeXMLFilesViewModel.cs │ ├── Views │ │ ├── ManageXMLFilesView.axaml │ │ ├── ManageXMLFilesView.axaml.cs │ │ ├── MergeXMLFilesView.axaml │ │ └── MergeXMLFilesView.axaml.cs │ └── XmlTranslatorManagerModule.cs ├── CodeWF.Toolbox.Desktop │ ├── App.config │ ├── CodeWF.Toolbox.Desktop.csproj │ ├── Program.cs │ ├── Roots.xml │ ├── app.manifest │ └── logo.ico └── CodeWF.Toolbox │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ ├── datetime-converter.png │ ├── logo.ico │ ├── logo.png │ ├── slug-converter.png │ ├── wechatowner.jpg │ └── wechatpublic.jpg │ ├── CodeWF.Toolbox.csproj │ ├── Commands │ ├── ChangeApplicationStatusCommand.cs │ └── ChangeToolMenuCommand.cs │ ├── Converters │ └── IconConverter.cs │ ├── I18n │ ├── Language.cs │ ├── Language.tt │ ├── MainModule.en-US.xml │ ├── MainModule.ja-JP.xml │ ├── MainModule.zh-CN.xml │ └── MainModule.zh-Hant.xml │ ├── Icons.cs │ ├── MainModule.cs │ ├── Models │ ├── ConstDatas.cs │ └── ThemeItem.cs │ ├── Services │ └── ApplicationService.cs │ ├── Styles │ └── Index.axaml │ ├── ViewModels │ ├── AboutViewModel.cs │ ├── CommonSettingViewModel.cs │ ├── DashboardViewModel.cs │ ├── ExitOptionViewModel.cs │ ├── MainContentViewModel.cs │ ├── MainMenuViewModel.cs │ ├── MainViewModel.cs │ ├── SettingViewModel.cs │ ├── UpdateLogViewModel.cs │ └── ViewModelBase.cs │ └── Views │ ├── AboutView.axaml │ ├── AboutView.axaml.cs │ ├── CommonSettingView.axaml │ ├── CommonSettingView.axaml.cs │ ├── DashboardView.axaml │ ├── DashboardView.axaml.cs │ ├── ExitOptionView.axaml │ ├── ExitOptionView.axaml.cs │ ├── MainContentView.axaml │ ├── MainContentView.axaml.cs │ ├── MainMenuView.axaml │ ├── MainMenuView.axaml.cs │ ├── MainView.axaml │ ├── MainView.axaml.cs │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ ├── SettingView.axaml │ ├── SettingView.axaml.cs │ ├── UpdateLogView.axaml │ └── UpdateLogView.axaml.cs └── tests ├── AvaloniaAotDemo ├── App.axaml ├── App.axaml.cs ├── Assets │ └── avalonia-logo.ico ├── AvaloniaAotDemo.csproj ├── Commands │ └── ChangeTimeCommand.cs ├── Program.cs ├── ViewLocator.cs ├── ViewModels │ ├── MainWindowViewModel.cs │ └── ViewModelBase.cs ├── Views │ ├── MainWindow.axaml │ └── MainWindow.axaml.cs └── app.manifest ├── ConsoleAotDemo ├── ConsoleAotDemo.csproj ├── DBHeper.cs ├── Dtos │ └── Person.cs └── Program.cs └── WinFormsAotDemo ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs └── WinFormsAotDemo.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /CodeWF.Toolbox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/CodeWF.Toolbox.sln -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/README-zh_CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/README.md -------------------------------------------------------------------------------- /UpdateLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/UpdateLog.md -------------------------------------------------------------------------------- /src/CodeWF.Controls/CodeWF.Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Controls/CodeWF.Controls.csproj -------------------------------------------------------------------------------- /src/CodeWF.Core/CodeWF.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/CodeWF.Core.csproj -------------------------------------------------------------------------------- /src/CodeWF.Core/ConfigDB/DBConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/ConfigDB/DBConst.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/DialogNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/DialogNames.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/HostIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/HostIds.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/IServices/IApplicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/IServices/IApplicationService.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/IServices/IFileChooserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/IServices/IFileChooserService.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/IServices/INotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/IServices/INotificationService.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/IToolMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/IToolMenuService.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/Models/ToolMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/Models/ToolMenuItem.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/Models/ToolStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/Models/ToolStatus.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/RegionAdapters/TabControlRegionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/RegionAdapters/TabControlRegionAdapter.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/RegionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/RegionNames.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/Services/FileChooserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/Services/FileChooserService.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/Services/NotificationService.cs -------------------------------------------------------------------------------- /src/CodeWF.Core/ToolMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Core/ToolMenuService.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/AIModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/AIModule.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/CodeWF - Backup.Modules.AI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/CodeWF - Backup.Modules.AI.csproj -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/CodeWF.Modules.AI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/CodeWF.Modules.AI.csproj -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Entities/TranslateLanguageEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Entities/TranslateLanguageEntity.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Helpers/ApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Helpers/ApiClient.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Helpers/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Helpers/ConfigHelper.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/I18n/AIModule.en-US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/I18n/AIModule.en-US.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/I18n/AIModule.ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/I18n/AIModule.ja-JP.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/I18n/AIModule.zh-CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/I18n/AIModule.zh-CN.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/I18n/AIModule.zh-Hant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/I18n/AIModule.zh-Hant.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/I18n/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/I18n/Language.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/I18n/Language.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/I18n/Language.tt -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Icons.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Imports.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Models/AskBotRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Models/AskBotRequest.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Models/ChatGptOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Models/ChatGptOptions.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Models/PolyTranslateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Models/PolyTranslateRequest.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Models/Title2SlugRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Models/Title2SlugRequest.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/ViewModels/AskBotViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/ViewModels/AskBotViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/ViewModels/ChoiceLanguagesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/ViewModels/ChoiceLanguagesViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/ViewModels/PolyTranslateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/ViewModels/PolyTranslateViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/ViewModels/Title2SlugViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/ViewModels/Title2SlugViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Views/AskBotView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Views/AskBotView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Views/AskBotView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Views/AskBotView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Views/ChoiceLanguagesView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Views/ChoiceLanguagesView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Views/ChoiceLanguagesView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Views/ChoiceLanguagesView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Views/PolyTranslateView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Views/PolyTranslateView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Views/PolyTranslateView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Views/PolyTranslateView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Views/Title2SlugView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Views/Title2SlugView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.AI/Views/Title2SlugView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.AI/Views/Title2SlugView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/CodeWF.Modules.Converter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/CodeWF.Modules.Converter.csproj -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/ConverterModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/ConverterModule.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/I18n/ConverterModule.en-US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/I18n/ConverterModule.en-US.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/I18n/ConverterModule.ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/I18n/ConverterModule.ja-JP.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/I18n/ConverterModule.zh-CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/I18n/ConverterModule.zh-CN.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/I18n/ConverterModule.zh-Hant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/I18n/ConverterModule.zh-Hant.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/I18n/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/I18n/Language.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/I18n/Language.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/I18n/Language.tt -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/Icons.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/Models/IconSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/Models/IconSize.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/ViewModels/DateTimeConverterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/ViewModels/DateTimeConverterViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/ViewModels/ImageToIconViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/ViewModels/ImageToIconViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/ViewModels/JsonToYamlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/ViewModels/JsonToYamlViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/ViewModels/YamlToJsonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/ViewModels/YamlToJsonViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/Views/DateTimeConverterView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/Views/DateTimeConverterView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/Views/DateTimeConverterView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/Views/DateTimeConverterView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/Views/ImageToIconView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/Views/ImageToIconView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/Views/ImageToIconView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/Views/ImageToIconView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/Views/JsonToYamlView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/Views/JsonToYamlView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/Views/JsonToYamlView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/Views/JsonToYamlView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/Views/YamlToJsonView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/Views/YamlToJsonView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Converter/Views/YamlToJsonView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Converter/Views/YamlToJsonView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Assets/OvertimeAlarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Assets/OvertimeAlarm.png -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Assets/OvertimeAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Assets/OvertimeAll.png -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Assets/OvertimeNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Assets/OvertimeNormal.png -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/CodeWF.Modules.Development.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/CodeWF.Modules.Development.csproj -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Converters/WarningKindDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Converters/WarningKindDescriptionConverter.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Converters/WarningKindImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Converters/WarningKindImageConverter.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/DevelopmentModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/DevelopmentModule.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Entities/JsonPrettifyEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Entities/JsonPrettifyEntity.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Helpers/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Helpers/ConfigHelper.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/I18n/DevelopmentModule.en-US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/I18n/DevelopmentModule.en-US.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/I18n/DevelopmentModule.ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/I18n/DevelopmentModule.ja-JP.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/I18n/DevelopmentModule.zh-CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/I18n/DevelopmentModule.zh-CN.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/I18n/DevelopmentModule.zh-Hant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/I18n/DevelopmentModule.zh-Hant.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/I18n/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/I18n/Language.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/I18n/Language.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/I18n/Language.tt -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Icons.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Jobs/DailyTimeJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Jobs/DailyTimeJob.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Jobs/UpdateTimeJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Jobs/UpdateTimeJob.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Models/WarningKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Models/WarningKind.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/ViewModels/JsonPrettifyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/ViewModels/JsonPrettifyViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/ViewModels/TestViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/ViewModels/TestViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/ViewModels/YamlPrettifyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/ViewModels/YamlPrettifyViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Views/JsonPrettifyView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Views/JsonPrettifyView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Views/JsonPrettifyView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Views/JsonPrettifyView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Views/TestView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Views/TestView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Views/TestView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Views/TestView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Views/YamlPrettifyView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Views/YamlPrettifyView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.Development/Views/YamlPrettifyView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.Development/Views/YamlPrettifyView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/CodeWF.Modules.XmlTranslatorManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/CodeWF.Modules.XmlTranslatorManager.csproj -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/I18n/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/I18n/Language.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/I18n/Language.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/I18n/Language.tt -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/I18n/XmlTranslatorManagerModule.en-US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/I18n/XmlTranslatorManagerModule.en-US.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/I18n/XmlTranslatorManagerModule.ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/I18n/XmlTranslatorManagerModule.ja-JP.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/I18n/XmlTranslatorManagerModule.zh-CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/I18n/XmlTranslatorManagerModule.zh-CN.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/I18n/XmlTranslatorManagerModule.zh-Hant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/I18n/XmlTranslatorManagerModule.zh-Hant.xml -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/Icons.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/Models/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/Models/Consts.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/Models/LanguageClassModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/Models/LanguageClassModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/Models/LanguageProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/Models/LanguageProperty.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/Models/LanguageXmlFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/Models/LanguageXmlFileInfo.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/Models/LanguageXmlModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/Models/LanguageXmlModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/README.zh-CN.md -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/ViewModels/ManageXMLFilesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/ViewModels/ManageXMLFilesViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/ViewModels/MergeXMLFilesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/ViewModels/MergeXMLFilesViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/Views/ManageXMLFilesView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/Views/ManageXMLFilesView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/Views/ManageXMLFilesView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/Views/ManageXMLFilesView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/Views/MergeXMLFilesView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/Views/MergeXMLFilesView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/Views/MergeXMLFilesView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/Views/MergeXMLFilesView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Modules.XmlTranslatorManager/XmlTranslatorManagerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Modules.XmlTranslatorManager/XmlTranslatorManagerModule.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox.Desktop/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox.Desktop/App.config -------------------------------------------------------------------------------- /src/CodeWF.Toolbox.Desktop/CodeWF.Toolbox.Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox.Desktop/CodeWF.Toolbox.Desktop.csproj -------------------------------------------------------------------------------- /src/CodeWF.Toolbox.Desktop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox.Desktop/Program.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox.Desktop/Roots.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox.Desktop/Roots.xml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox.Desktop/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox.Desktop/app.manifest -------------------------------------------------------------------------------- /src/CodeWF.Toolbox.Desktop/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox.Desktop/logo.ico -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/App.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/App.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Assets/datetime-converter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Assets/datetime-converter.png -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Assets/logo.ico -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Assets/logo.png -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Assets/slug-converter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Assets/slug-converter.png -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Assets/wechatowner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Assets/wechatowner.jpg -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Assets/wechatpublic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Assets/wechatpublic.jpg -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/CodeWF.Toolbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/CodeWF.Toolbox.csproj -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Commands/ChangeApplicationStatusCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Commands/ChangeApplicationStatusCommand.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Commands/ChangeToolMenuCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Commands/ChangeToolMenuCommand.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Converters/IconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Converters/IconConverter.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/I18n/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/I18n/Language.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/I18n/Language.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/I18n/Language.tt -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/I18n/MainModule.en-US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/I18n/MainModule.en-US.xml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/I18n/MainModule.ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/I18n/MainModule.ja-JP.xml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/I18n/MainModule.zh-CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/I18n/MainModule.zh-CN.xml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/I18n/MainModule.zh-Hant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/I18n/MainModule.zh-Hant.xml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Icons.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/MainModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/MainModule.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Models/ConstDatas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Models/ConstDatas.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Models/ThemeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Models/ThemeItem.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Services/ApplicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Services/ApplicationService.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Styles/Index.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Styles/Index.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/ViewModels/CommonSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/ViewModels/CommonSettingViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/ViewModels/DashboardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/ViewModels/DashboardViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/ViewModels/ExitOptionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/ViewModels/ExitOptionViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/ViewModels/MainContentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/ViewModels/MainContentViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/ViewModels/MainMenuViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/ViewModels/MainMenuViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/ViewModels/SettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/ViewModels/SettingViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/ViewModels/UpdateLogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/ViewModels/UpdateLogViewModel.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/AboutView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/AboutView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/AboutView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/AboutView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/CommonSettingView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/CommonSettingView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/CommonSettingView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/CommonSettingView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/DashboardView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/DashboardView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/DashboardView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/DashboardView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/ExitOptionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/ExitOptionView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/ExitOptionView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/ExitOptionView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/MainContentView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/MainContentView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/MainContentView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/MainContentView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/MainMenuView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/MainMenuView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/MainMenuView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/MainMenuView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/MainView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/MainView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/MainView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/MainView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/MainWindow.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/SettingView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/SettingView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/SettingView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/SettingView.axaml.cs -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/UpdateLogView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/UpdateLogView.axaml -------------------------------------------------------------------------------- /src/CodeWF.Toolbox/Views/UpdateLogView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/src/CodeWF.Toolbox/Views/UpdateLogView.axaml.cs -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/App.axaml -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/App.axaml.cs -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/Assets/avalonia-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/Assets/avalonia-logo.ico -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/AvaloniaAotDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/AvaloniaAotDemo.csproj -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/Commands/ChangeTimeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/Commands/ChangeTimeCommand.cs -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/Program.cs -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/ViewLocator.cs -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/Views/MainWindow.axaml -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /tests/AvaloniaAotDemo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/AvaloniaAotDemo/app.manifest -------------------------------------------------------------------------------- /tests/ConsoleAotDemo/ConsoleAotDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/ConsoleAotDemo/ConsoleAotDemo.csproj -------------------------------------------------------------------------------- /tests/ConsoleAotDemo/DBHeper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/ConsoleAotDemo/DBHeper.cs -------------------------------------------------------------------------------- /tests/ConsoleAotDemo/Dtos/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/ConsoleAotDemo/Dtos/Person.cs -------------------------------------------------------------------------------- /tests/ConsoleAotDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/ConsoleAotDemo/Program.cs -------------------------------------------------------------------------------- /tests/WinFormsAotDemo/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/WinFormsAotDemo/Form1.Designer.cs -------------------------------------------------------------------------------- /tests/WinFormsAotDemo/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/WinFormsAotDemo/Form1.cs -------------------------------------------------------------------------------- /tests/WinFormsAotDemo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/WinFormsAotDemo/Form1.resx -------------------------------------------------------------------------------- /tests/WinFormsAotDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/WinFormsAotDemo/Program.cs -------------------------------------------------------------------------------- /tests/WinFormsAotDemo/WinFormsAotDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet9/CodeWF.Toolbox/HEAD/tests/WinFormsAotDemo/WinFormsAotDemo.csproj --------------------------------------------------------------------------------