diff --git a/App.xaml b/App.xaml index c2e3ab2..95ef6d0 100644 --- a/App.xaml +++ b/App.xaml @@ -24,8 +24,8 @@ - - + + diff --git a/MainWindow.xaml b/MainWindow.xaml index 336e397..7416db7 100644 --- a/MainWindow.xaml +++ b/MainWindow.xaml @@ -50,7 +50,7 @@ - + @@ -144,7 +144,7 @@ - + diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index d83b0e0..8946d4d 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -29,7 +29,9 @@ public partial class MainWindow protected override void OnContentRendered(EventArgs e) { base.OnContentRendered(e); - DataContext = MainViewModel.Instance; + MainViewModel mainVM = new MainViewModel(); + DataContext = mainVM; + WindowManager.mainViewModel = mainVM; Logger.Debug("OnContentRendered -------"); } diff --git a/Resource/Images/config_3x.png b/Resource/Images/config_3x.png new file mode 100644 index 0000000..bfcb95b Binary files /dev/null and b/Resource/Images/config_3x.png differ diff --git a/Resource/Images/diam_3x.png b/Resource/Images/diam_3x.png new file mode 100644 index 0000000..508a974 Binary files /dev/null and b/Resource/Images/diam_3x.png differ diff --git a/Resource/Images/hand_3x.png b/Resource/Images/hand_3x.png new file mode 100644 index 0000000..f7c8f2a Binary files /dev/null and b/Resource/Images/hand_3x.png differ diff --git a/Resource/Images/help_3x.png b/Resource/Images/help_3x.png new file mode 100644 index 0000000..8e1c01a Binary files /dev/null and b/Resource/Images/help_3x.png differ diff --git a/SparkClient.csproj b/SparkClient.csproj index 8127cb4..b6fba99 100644 --- a/SparkClient.csproj +++ b/SparkClient.csproj @@ -27,6 +27,14 @@ Always + + + + + + + + diff --git a/SparkClient.sln.DotSettings.user b/SparkClient.sln.DotSettings.user index 95c6472..1df1a09 100644 --- a/SparkClient.sln.DotSettings.user +++ b/SparkClient.sln.DotSettings.user @@ -1,6 +1,8 @@  ForceIncluded ForceIncluded + ForceIncluded + ForceIncluded ForceIncluded ForceIncluded ForceIncluded diff --git a/ViewModel/BaseViewModel.cs b/ViewModel/BaseViewModel.cs index 41db4bb..c9220e7 100644 --- a/ViewModel/BaseViewModel.cs +++ b/ViewModel/BaseViewModel.cs @@ -11,7 +11,7 @@ public class BaseViewModel : INotifyPropertyChanged protected void OnPropertyChanged([CallerMemberName] string propertyName = null) { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } - + public class RelayCommand : ICommand { diff --git a/ViewModel/BaseWindow/BaseControlVM.cs b/ViewModel/BaseWindow/BaseControlVM.cs index bfef468..3c2e4f7 100644 --- a/ViewModel/BaseWindow/BaseControlVM.cs +++ b/ViewModel/BaseWindow/BaseControlVM.cs @@ -22,11 +22,16 @@ public class BaseControlVM : BaseViewModel public object Content { get; } public ICommand CloseCommand { get; } - public BaseControlVM(MainViewModel mainViewModel, object content) + public BaseControlVM(BaseViewModel vm) { - Content = content; - CloseCommand = mainViewModel.ShowHomeCommand; // 返回 HomeWindow + Content = vm; + + CloseCommand = new RelayCommand(CloseVM); + } + + public void CloseVM(object parameter) + { + WindowManager.mainViewModel.Content = WindowManager.PreviousVM(); } - } \ No newline at end of file diff --git a/ViewModel/BaseWindow/HomeWindowVM.cs b/ViewModel/BaseWindow/HomeWindowVM.cs index 57373c2..a97c629 100644 --- a/ViewModel/BaseWindow/HomeWindowVM.cs +++ b/ViewModel/BaseWindow/HomeWindowVM.cs @@ -6,14 +6,17 @@ namespace SparkClient.ViewModel.BaseWindow; public class HomeWindowVM : BaseViewModel { - private readonly MainViewModel _mainViewModel; + public ICommand ShowHelperPageCommand { get; } - public ICommand ShowHelperPageCommand => _mainViewModel.ShowHelperPageCommand; - public ICommand ShowSettingsPageCommand => _mainViewModel.ShowSettingsPageCommand; - public ICommand ShowProfilePageCommand => _mainViewModel.ShowProfilePageCommand; + public HomeWindowVM() + { + ShowHelperPageCommand = new RelayCommand(ShowHelperPage); + } - public HomeWindowVM(MainViewModel mainViewModel) - { - _mainViewModel = mainViewModel; - } + public void ShowHelperPage(object parameter) + { + BaseControlVM vm = new BaseControlVM(new HelperPageVM()); + WindowManager.mainViewModel.Content = vm; + WindowManager.openContent.Add(vm); + } } \ No newline at end of file diff --git a/ViewModel/BaseWindow/MainViewModel.cs b/ViewModel/BaseWindow/MainViewModel.cs index b3f1528..06ca3d2 100644 --- a/ViewModel/BaseWindow/MainViewModel.cs +++ b/ViewModel/BaseWindow/MainViewModel.cs @@ -1,42 +1,14 @@ -using System.Windows.Input; -using SparkClient.Views; - namespace SparkClient.ViewModel.BaseWindow; -public class MainViewModel: BaseViewModel +public class MainViewModel : BaseViewModel { + private object _content; - private static MainViewModel _instance; - - public static MainViewModel Instance => _instance ??= new MainViewModel(); + public object Content { get { return _content; } set { _content = value; OnPropertyChanged("Content"); } } - - private object _currentViewModel; - - public object CurrentViewModel + public MainViewModel() { - get => _currentViewModel; - set - { - _currentViewModel = value; - OnPropertyChanged(); - } - } - - public ICommand ShowHomeCommand { get; } - public ICommand ShowHelperPageCommand { get; } - public ICommand ShowSettingsPageCommand { get; } - public ICommand ShowProfilePageCommand { get; } - - private MainViewModel() - { - // 初始化加载 HomeWindow - CurrentViewModel = new HomeWindowVM(this); - - // 初始化命令 - ShowHomeCommand = new RelayCommand(_ => CurrentViewModel = new HomeWindowVM(this)); - ShowHelperPageCommand = new RelayCommand(_ => CurrentViewModel = new BaseControlVM(this, new HelperPage())); - // ShowSettingsPageCommand = new RelayCommand(_ => CurrentViewModel = new BaseControlVM(this, new SettingsPage())); - // ShowProfilePageCommand = new RelayCommand(_ => CurrentViewModel = new BaseControlVM(this, new ProfilePage())); + Content = new HomeWindowVM(); + WindowManager.openContent.Add(Content); } } \ No newline at end of file diff --git a/ViewModel/BaseWindow/WindowManager.cs b/ViewModel/BaseWindow/WindowManager.cs new file mode 100644 index 0000000..6668a13 --- /dev/null +++ b/ViewModel/BaseWindow/WindowManager.cs @@ -0,0 +1,18 @@ +namespace SparkClient.ViewModel.BaseWindow; + +public class WindowManager +{ + public static MainViewModel mainViewModel; + + public static List openContent = new List(); + + /// + /// 获取上一个界面 + /// + /// + public static object PreviousVM() + { + openContent.Remove(openContent.Last()); + return openContent.Last(); + } +} \ No newline at end of file diff --git a/ViewModel/HelperPageMV.cs b/ViewModel/HelperPageVM.cs similarity index 56% rename from ViewModel/HelperPageMV.cs rename to ViewModel/HelperPageVM.cs index 09e95dd..a892c63 100644 --- a/ViewModel/HelperPageMV.cs +++ b/ViewModel/HelperPageVM.cs @@ -1,6 +1,6 @@ namespace SparkClient.ViewModel.BaseWindow; -public class HelperPageMV +public class HelperPageVM: BaseViewModel { } \ No newline at end of file diff --git a/Views/BaseWindow/BaseControl.xaml b/Views/BaseWindow/BaseControl.xaml index d0ddaae..97fbe21 100644 --- a/Views/BaseWindow/BaseControl.xaml +++ b/Views/BaseWindow/BaseControl.xaml @@ -5,15 +5,15 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:hc="https://handyorg.github.io/handycontrol" mc:Ignorable="d" - Margin="10" CornerRadius="10" + Margin="10" CornerRadius="15" > - + - + @@ -49,28 +49,25 @@ - - - - - - - - - + diff --git a/Views/BaseWindow/BaseControl.xaml.cs b/Views/BaseWindow/BaseControl.xaml.cs index ca7af27..233fb08 100644 --- a/Views/BaseWindow/BaseControl.xaml.cs +++ b/Views/BaseWindow/BaseControl.xaml.cs @@ -1,4 +1,5 @@ -using System.Windows.Controls; +using System.Windows; +using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; using SparkClient.ViewModel.BaseWindow; @@ -10,6 +11,10 @@ public partial class BaseControl public BaseControl() { InitializeComponent(); + + // 动态设置圆角裁剪 + this.Loaded += (s, e) => ApplyCornerRadiusClip(); + this.SizeChanged += (s, e) => ApplyCornerRadiusClip(); // 保证在大小改变时也裁剪 } private void Border_Minimize_MouseEnter(object sender, MouseEventArgs e) @@ -36,4 +41,15 @@ public partial class BaseControl border.Background = new SolidColorBrush(Colors.Transparent); } } + + private void ApplyCornerRadiusClip() + { + // 使用矩形几何生成圆角裁剪 + this.Clip = new RectangleGeometry + { + Rect = new Rect(0, 0, this.ActualWidth, this.ActualHeight), + RadiusX = this.CornerRadius.TopLeft, // 使用 Border 的 CornerRadius + RadiusY = this.CornerRadius.TopLeft + }; + } } \ No newline at end of file diff --git a/Views/BaseWindow/HomeWindow.xaml b/Views/BaseWindow/HomeWindow.xaml index b879bdc..22fb002 100644 --- a/Views/BaseWindow/HomeWindow.xaml +++ b/Views/BaseWindow/HomeWindow.xaml @@ -22,7 +22,7 @@ - + @@ -31,12 +31,25 @@ - - - + + diff --git a/obj/Debug/net8.0-windows/App.g.cs b/obj/Debug/net8.0-windows/App.g.cs deleted file mode 100644 index 6b6f46a..0000000 --- a/obj/Debug/net8.0-windows/App.g.cs +++ /dev/null @@ -1,98 +0,0 @@ -#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CF59DAB8ADED664E331024A9E6DD8F0FF1C9B4E2" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using HandyControl.Controls; -using HandyControl.Data; -using HandyControl.Expression.Media; -using HandyControl.Expression.Shapes; -using HandyControl.Interactivity; -using HandyControl.Media.Animation; -using HandyControl.Media.Effects; -using HandyControl.Properties.Langs; -using HandyControl.Themes; -using HandyControl.Tools; -using HandyControl.Tools.Converter; -using HandyControl.Tools.Extension; -using SparkClient; -using SparkClient.ViewModel.BaseWindow; -using SparkClient.Views; -using SparkClient.Views.BaseWindow; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace SparkClient { - - - /// - /// App - /// - public partial class App : System.Windows.Application { - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - - #line 9 "..\..\..\App.xaml" - this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); - - #line default - #line hidden - System.Uri resourceLocater = new System.Uri("/SparkClient;component/app.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\App.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - /// - /// Application Entry Point. - /// - [System.STAThreadAttribute()] - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public static void Main() { - SparkClient.App app = new SparkClient.App(); - app.InitializeComponent(); - app.Run(); - } - } -} - diff --git a/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.cs b/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.cs deleted file mode 100644 index 1c4f298..0000000 --- a/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.cs +++ /dev/null @@ -1,61 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace XamlGeneratedNamespace { - - - /// - /// GeneratedInternalTypeHelper - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { - - /// - /// CreateInstance - /// - protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { - return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) - | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); - } - - /// - /// GetPropertyValue - /// - protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { - return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); - } - - /// - /// SetPropertyValue - /// - protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { - propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); - } - - /// - /// CreateDelegate - /// - protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { - return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod - | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { - delegateType, - handler}, null))); - } - - /// - /// AddEventHandler - /// - protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { - eventInfo.AddEventHandler(target, handler); - } - } -} - diff --git a/obj/Debug/net8.0-windows/Language/en_US.baml b/obj/Debug/net8.0-windows/Language/en_US.baml deleted file mode 100644 index 6478e45..0000000 Binary files a/obj/Debug/net8.0-windows/Language/en_US.baml and /dev/null differ diff --git a/obj/Debug/net8.0-windows/Language/zh_CN.baml b/obj/Debug/net8.0-windows/Language/zh_CN.baml deleted file mode 100644 index cc9c93a..0000000 Binary files a/obj/Debug/net8.0-windows/Language/zh_CN.baml and /dev/null differ diff --git a/obj/Debug/net8.0-windows/MainWindow.g.cs b/obj/Debug/net8.0-windows/MainWindow.g.cs deleted file mode 100644 index 778cea0..0000000 --- a/obj/Debug/net8.0-windows/MainWindow.g.cs +++ /dev/null @@ -1,138 +0,0 @@ -#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "FDD5F1F528ECFAD3D7515C612548D239EA9157CB" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using HandyControl.Controls; -using HandyControl.Data; -using HandyControl.Expression.Media; -using HandyControl.Expression.Shapes; -using HandyControl.Interactivity; -using HandyControl.Media.Animation; -using HandyControl.Media.Effects; -using HandyControl.Properties.Langs; -using HandyControl.Themes; -using HandyControl.Tools; -using HandyControl.Tools.Converter; -using HandyControl.Tools.Extension; -using SparkClient.ViewModel.BaseWindow; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace SparkClient { - - - /// - /// MainWindow - /// - public partial class MainWindow : HandyControl.Controls.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/SparkClient;component/mainwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\MainWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - - #line 19 "..\..\..\MainWindow.xaml" - ((SparkClient.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.MainWindow_OnLoaded); - - #line default - #line hidden - return; - case 2: - - #line 108 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseEnter += new System.Windows.Input.MouseEventHandler(this.Border_Minimize_MouseEnter); - - #line default - #line hidden - - #line 109 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseLeave += new System.Windows.Input.MouseEventHandler(this.Border_MouseLeave); - - #line default - #line hidden - - #line 110 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Minimize_Click); - - #line default - #line hidden - return; - case 3: - - #line 128 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseEnter += new System.Windows.Input.MouseEventHandler(this.Border_Close_MouseEnter); - - #line default - #line hidden - - #line 129 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseLeave += new System.Windows.Input.MouseEventHandler(this.Border_MouseLeave); - - #line default - #line hidden - - #line 130 "..\..\..\MainWindow.xaml" - ((System.Windows.Controls.Border)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Close_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/obj/Debug/net8.0-windows/SparkCli.BE712714.Up2Date b/obj/Debug/net8.0-windows/SparkCli.BE712714.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net8.0-windows/SparkClient.AssemblyInfo.cs b/obj/Debug/net8.0-windows/SparkClient.AssemblyInfo.cs deleted file mode 100644 index eba792a..0000000 --- a/obj/Debug/net8.0-windows/SparkClient.AssemblyInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("SparkClient")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+0130c6638ebb90c76a059038564a66f4d2d5ea9a")] -[assembly: System.Reflection.AssemblyProductAttribute("SparkClient")] -[assembly: System.Reflection.AssemblyTitleAttribute("SparkClient")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/obj/Debug/net8.0-windows/SparkClient.AssemblyInfoInputs.cache b/obj/Debug/net8.0-windows/SparkClient.AssemblyInfoInputs.cache deleted file mode 100644 index 1c5133d..0000000 --- a/obj/Debug/net8.0-windows/SparkClient.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -d5bca11e76a4911ea8f91ded63183fd5e4604f7ac52cac0e70891e09d1f64582 diff --git a/obj/Debug/net8.0-windows/SparkClient.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0-windows/SparkClient.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 75cabb0..0000000 --- a/obj/Debug/net8.0-windows/SparkClient.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,14 +0,0 @@ -is_global = true -build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true -build_property.TargetFramework = net8.0-windows -build_property.TargetPlatformMinVersion = 7.0 -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = SparkClient -build_property.ProjectDir = D:\WorkSpace\spark\SparkClient\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/obj/Debug/net8.0-windows/SparkClient.assets.cache b/obj/Debug/net8.0-windows/SparkClient.assets.cache index 0911117..11f330c 100644 Binary files a/obj/Debug/net8.0-windows/SparkClient.assets.cache and b/obj/Debug/net8.0-windows/SparkClient.assets.cache differ diff --git a/obj/Debug/net8.0-windows/SparkClient.csproj.AssemblyReference.cache b/obj/Debug/net8.0-windows/SparkClient.csproj.AssemblyReference.cache deleted file mode 100644 index 82d1ea2..0000000 Binary files a/obj/Debug/net8.0-windows/SparkClient.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Debug/net8.0-windows/SparkClient.csproj.CoreCompileInputs.cache b/obj/Debug/net8.0-windows/SparkClient.csproj.CoreCompileInputs.cache deleted file mode 100644 index 0580474..0000000 --- a/obj/Debug/net8.0-windows/SparkClient.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -8e5acddc4ff72bc9547b5631395e06d3dd0f42ef757241fa83f80ba8a9761e10 diff --git a/obj/Debug/net8.0-windows/SparkClient.csproj.FileListAbsolute.txt b/obj/Debug/net8.0-windows/SparkClient.csproj.FileListAbsolute.txt index 97a21d1..54aef3a 100644 --- a/obj/Debug/net8.0-windows/SparkClient.csproj.FileListAbsolute.txt +++ b/obj/Debug/net8.0-windows/SparkClient.csproj.FileListAbsolute.txt @@ -1,80 +1,3 @@ -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\SparkClient.exe -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\SparkClient.deps.json -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\SparkClient.runtimeconfig.json -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\SparkClient.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\SparkClient.pdb -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\HandyControl.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\Newtonsoft.Json.dll -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkClient.csproj.AssemblyReference.cache -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\MainWindow.baml -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\MainWindow.g.cs -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\App.g.cs -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkClient_MarkupCompile.cache -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkClient_MarkupCompile.lref -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\App.baml -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkClient.g.resources -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkClient.GeneratedMSBuildEditorConfig.editorconfig -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkClient.AssemblyInfoInputs.cache -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkClient.AssemblyInfo.cs -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkClient.csproj.CoreCompileInputs.cache -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkCli.BE712714.Up2Date -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkClient.dll -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\refint\SparkClient.dll -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkClient.pdb -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\SparkClient.genruntimeconfig.cache -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\ref\SparkClient.dll -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\Language\zh_CN.baml -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\Language\en_US.baml -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\en\HandyControl.resources.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\zh-CN\HandyControl.resources.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\CommunityToolkit.Mvvm.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\Microsoft.Data.Sqlite.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\SQLitePCLRaw.batteries_v2.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\SQLitePCLRaw.core.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\SQLitePCLRaw.provider.e_sqlite3.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-arm\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-arm64\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-armel\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-mips64\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-musl-arm\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-musl-arm64\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-musl-s390x\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-musl-x64\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-ppc64le\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-s390x\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-x64\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-x86\native\libe_sqlite3.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\osx-arm64\native\libe_sqlite3.dylib -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\osx-x64\native\libe_sqlite3.dylib -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\win-arm\native\e_sqlite3.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\win-arm64\native\e_sqlite3.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\win-x64\native\e_sqlite3.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\win-x86\native\e_sqlite3.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\SQLitePCLRaw.provider.e_sqlcipher.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\browser-wasm\nativeassets\net8.0\e_sqlcipher.a -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-arm\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-arm64\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-armel\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-mips64\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-musl-arm\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-musl-arm64\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-musl-s390x\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-musl-x64\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-ppc64le\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-s390x\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-x64\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\linux-x86\native\libe_sqlcipher.so -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\maccatalyst-arm64\native\libe_sqlcipher.dylib -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\maccatalyst-x64\native\libe_sqlcipher.dylib -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\osx-arm64\native\libe_sqlcipher.dylib -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\osx-x64\native\libe_sqlcipher.dylib -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\win-arm\native\e_sqlcipher.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\win-arm64\native\e_sqlcipher.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\win-x64\native\e_sqlcipher.dll -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\runtimes\win-x86\native\e_sqlcipher.dll F:\MyProject\SparkClient\bin\Debug\net8.0-windows\SparkClient.exe F:\MyProject\SparkClient\bin\Debug\net8.0-windows\SparkClient.deps.json F:\MyProject\SparkClient\bin\Debug\net8.0-windows\SparkClient.runtimeconfig.json @@ -158,12 +81,3 @@ F:\MyProject\SparkClient\obj\Debug\net8.0-windows\Views\BaseWindow\BaseControl.g F:\MyProject\SparkClient\obj\Debug\net8.0-windows\Views\BaseWindow\HomeWindow.g.cs F:\MyProject\SparkClient\obj\Debug\net8.0-windows\Views\BaseWindow\HomeWindow.baml F:\MyProject\SparkClient\bin\Debug\net8.0-windows\log4net.config -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\log4net.config -D:\WorkSpace\spark\SparkClient\bin\Debug\net8.0-windows\log4net.dll -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\Views\BaseWindow\BaseControl.baml -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\Views\BaseWindow\BaseControl.g.cs -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\Views\BaseWindow\HomeWindow.g.cs -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\Views\BaseWindow\HomeWindow.baml -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\Views\HelperPage.g.cs -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\Views\HelperPage.baml -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs diff --git a/obj/Debug/net8.0-windows/SparkClient.dll b/obj/Debug/net8.0-windows/SparkClient.dll deleted file mode 100644 index 754d995..0000000 Binary files a/obj/Debug/net8.0-windows/SparkClient.dll and /dev/null differ diff --git a/obj/Debug/net8.0-windows/SparkClient.g.resources b/obj/Debug/net8.0-windows/SparkClient.g.resources deleted file mode 100644 index 748dd1d..0000000 Binary files a/obj/Debug/net8.0-windows/SparkClient.g.resources and /dev/null differ diff --git a/obj/Debug/net8.0-windows/SparkClient.genruntimeconfig.cache b/obj/Debug/net8.0-windows/SparkClient.genruntimeconfig.cache deleted file mode 100644 index 6be1c1c..0000000 --- a/obj/Debug/net8.0-windows/SparkClient.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -595c737309ff7d7550de362973a67d772c8b2d07ae76668d00cec14c8e1cb772 diff --git a/obj/Debug/net8.0-windows/SparkClient.pdb b/obj/Debug/net8.0-windows/SparkClient.pdb deleted file mode 100644 index 3a89da7..0000000 Binary files a/obj/Debug/net8.0-windows/SparkClient.pdb and /dev/null differ diff --git a/obj/Debug/net8.0-windows/SparkClient_MarkupCompile.cache b/obj/Debug/net8.0-windows/SparkClient_MarkupCompile.cache deleted file mode 100644 index 00e48ac..0000000 --- a/obj/Debug/net8.0-windows/SparkClient_MarkupCompile.cache +++ /dev/null @@ -1,20 +0,0 @@ -SparkClient - - -winexe -C# -.cs -D:\WorkSpace\spark\SparkClient\obj\Debug\net8.0-windows\ -SparkClient -none -false -TRACE;DEBUG;NET;NET8_0;NETCOREAPP -D:\WorkSpace\spark\SparkClient\App.xaml -12-1410634317 - -23698228899 -207818567236 -Language\en_US.xaml;Language\zh_CN.xaml;MainWindow.xaml;Views\BaseWindow\BaseControl.xaml;Views\BaseWindow\HomeWindow.xaml;Views\Configuration\AlgorithmConfigPage.xaml;Views\Configuration\ConfigMenuPage.xaml;Views\Configuration\CutConfigPage.xaml;Views\Configuration\LevelConfigPage.xaml;Views\Grading\DiamondSelect.xaml;Views\Grading\GradingResult.xaml;Views\HelperPage.xaml; - -True - diff --git a/obj/Debug/net8.0-windows/SparkClient_MarkupCompile.lref b/obj/Debug/net8.0-windows/SparkClient_MarkupCompile.lref deleted file mode 100644 index d87a8cb..0000000 --- a/obj/Debug/net8.0-windows/SparkClient_MarkupCompile.lref +++ /dev/null @@ -1,12 +0,0 @@ - -FD:\WorkSpace\spark\SparkClient\App.xaml;; -FD:\WorkSpace\spark\SparkClient\MainWindow.xaml;; -FD:\WorkSpace\spark\SparkClient\Views\BaseWindow\HomeWindow.xaml;; -FD:\WorkSpace\spark\SparkClient\Views\Configuration\AlgorithmConfigPage.xaml;; -FD:\WorkSpace\spark\SparkClient\Views\Configuration\ConfigMenuPage.xaml;; -FD:\WorkSpace\spark\SparkClient\Views\Configuration\CutConfigPage.xaml;; -FD:\WorkSpace\spark\SparkClient\Views\Configuration\LevelConfigPage.xaml;; -FD:\WorkSpace\spark\SparkClient\Views\Grading\DiamondSelect.xaml;; -FD:\WorkSpace\spark\SparkClient\Views\Grading\GradingResult.xaml;; -FD:\WorkSpace\spark\SparkClient\Views\HelperPage.xaml;; - diff --git a/obj/Debug/net8.0-windows/Views/BaseWindow/BaseControl.baml b/obj/Debug/net8.0-windows/Views/BaseWindow/BaseControl.baml deleted file mode 100644 index 24a1a37..0000000 Binary files a/obj/Debug/net8.0-windows/Views/BaseWindow/BaseControl.baml and /dev/null differ diff --git a/obj/Debug/net8.0-windows/Views/BaseWindow/BaseControl.g.cs b/obj/Debug/net8.0-windows/Views/BaseWindow/BaseControl.g.cs deleted file mode 100644 index 7f1ae49..0000000 --- a/obj/Debug/net8.0-windows/Views/BaseWindow/BaseControl.g.cs +++ /dev/null @@ -1,128 +0,0 @@ -#pragma checksum "..\..\..\..\..\Views\BaseWindow\BaseControl.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "46456BB03860CD57C0C3AF11E76733EC01FD551E" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using HandyControl.Controls; -using HandyControl.Data; -using HandyControl.Expression.Media; -using HandyControl.Expression.Shapes; -using HandyControl.Interactivity; -using HandyControl.Media.Animation; -using HandyControl.Media.Effects; -using HandyControl.Properties.Langs; -using HandyControl.Themes; -using HandyControl.Tools; -using HandyControl.Tools.Converter; -using HandyControl.Tools.Extension; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace SparkClient.Views.BaseWindow { - - - /// - /// BaseControl - /// - public partial class BaseControl : System.Windows.Controls.Border, System.Windows.Markup.IComponentConnector { - - - #line 76 "..\..\..\..\..\Views\BaseWindow\BaseControl.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.ContentControl ContentMain; - - #line default - #line hidden - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/SparkClient;component/views/basewindow/basecontrol.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Views\BaseWindow\BaseControl.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - - #line 31 "..\..\..\..\..\Views\BaseWindow\BaseControl.xaml" - ((System.Windows.Controls.Border)(target)).MouseEnter += new System.Windows.Input.MouseEventHandler(this.Border_Minimize_MouseEnter); - - #line default - #line hidden - - #line 32 "..\..\..\..\..\Views\BaseWindow\BaseControl.xaml" - ((System.Windows.Controls.Border)(target)).MouseLeave += new System.Windows.Input.MouseEventHandler(this.Border_MouseLeave); - - #line default - #line hidden - return; - case 2: - - #line 55 "..\..\..\..\..\Views\BaseWindow\BaseControl.xaml" - ((System.Windows.Controls.Border)(target)).MouseEnter += new System.Windows.Input.MouseEventHandler(this.Border_Close_MouseEnter); - - #line default - #line hidden - - #line 56 "..\..\..\..\..\Views\BaseWindow\BaseControl.xaml" - ((System.Windows.Controls.Border)(target)).MouseLeave += new System.Windows.Input.MouseEventHandler(this.Border_MouseLeave); - - #line default - #line hidden - return; - case 3: - this.ContentMain = ((System.Windows.Controls.ContentControl)(target)); - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/obj/Debug/net8.0-windows/Views/BaseWindow/HomeWindow.g.cs b/obj/Debug/net8.0-windows/Views/BaseWindow/HomeWindow.g.cs deleted file mode 100644 index 39b4272..0000000 --- a/obj/Debug/net8.0-windows/Views/BaseWindow/HomeWindow.g.cs +++ /dev/null @@ -1,88 +0,0 @@ -#pragma checksum "..\..\..\..\..\Views\BaseWindow\HomeWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B8C896BA65EF30BB5535B2F27D221AEFCAE4FCA6" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using HandyControl.Controls; -using HandyControl.Data; -using HandyControl.Expression.Media; -using HandyControl.Expression.Shapes; -using HandyControl.Interactivity; -using HandyControl.Media.Animation; -using HandyControl.Media.Effects; -using HandyControl.Properties.Langs; -using HandyControl.Themes; -using HandyControl.Tools; -using HandyControl.Tools.Converter; -using HandyControl.Tools.Extension; -using SparkClient.ViewModel.BaseWindow; -using SparkClient.Views.BaseWindow; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace SparkClient.Views.BaseWindow { - - - /// - /// HomeWindow - /// - public partial class HomeWindow : System.Windows.Controls.Border, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/SparkClient;component/views/basewindow/homewindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Views\BaseWindow\HomeWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - this._contentLoaded = true; - } - } -} - diff --git a/obj/Debug/net8.0-windows/Views/Configuration/AlgorithmConfigPage.g.cs b/obj/Debug/net8.0-windows/Views/Configuration/AlgorithmConfigPage.g.cs deleted file mode 100644 index 441a4c8..0000000 --- a/obj/Debug/net8.0-windows/Views/Configuration/AlgorithmConfigPage.g.cs +++ /dev/null @@ -1,75 +0,0 @@ -#pragma checksum "..\..\..\..\..\Views\Configuration\AlgorithmConfigPage.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "11DB2089CD1191C776E366A58A00115E96485903" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using SparkClient.Views; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace SparkClient.Views.Configuration { - - - /// - /// AlgorithmConfigPage - /// - public partial class AlgorithmConfigPage : System.Windows.Controls.Border, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/SparkClient;component/views/configuration/algorithmconfigpage.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Views\Configuration\AlgorithmConfigPage.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - this._contentLoaded = true; - } - } -} - diff --git a/obj/Debug/net8.0-windows/Views/Configuration/ConfigMenuPage.g.cs b/obj/Debug/net8.0-windows/Views/Configuration/ConfigMenuPage.g.cs deleted file mode 100644 index 6fc8423..0000000 --- a/obj/Debug/net8.0-windows/Views/Configuration/ConfigMenuPage.g.cs +++ /dev/null @@ -1,75 +0,0 @@ -#pragma checksum "..\..\..\..\..\Views\Configuration\ConfigMenuPage.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "188E655C51266AF91556B6F29988F836ED753150" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using SparkClient.Views; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace SparkClient.Views.Configuration { - - - /// - /// ConfigMenuPage - /// - public partial class ConfigMenuPage : System.Windows.Controls.Border, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/SparkClient;component/views/configuration/configmenupage.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Views\Configuration\ConfigMenuPage.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - this._contentLoaded = true; - } - } -} - diff --git a/obj/Debug/net8.0-windows/Views/Configuration/CutConfigPage.g.cs b/obj/Debug/net8.0-windows/Views/Configuration/CutConfigPage.g.cs deleted file mode 100644 index 65c02a6..0000000 --- a/obj/Debug/net8.0-windows/Views/Configuration/CutConfigPage.g.cs +++ /dev/null @@ -1,75 +0,0 @@ -#pragma checksum "..\..\..\..\..\Views\Configuration\CutConfigPage.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "AA1BACFB7013D4E233DD4D9E846EC4779F888DFB" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using SparkClient.Views; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace SparkClient.Views.Configuration { - - - /// - /// CutConfigPage - /// - public partial class CutConfigPage : System.Windows.Controls.Border, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/SparkClient;component/views/configuration/cutconfigpage.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Views\Configuration\CutConfigPage.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - this._contentLoaded = true; - } - } -} - diff --git a/obj/Debug/net8.0-windows/Views/Configuration/LevelConfigPage.g.cs b/obj/Debug/net8.0-windows/Views/Configuration/LevelConfigPage.g.cs deleted file mode 100644 index 7ff202b..0000000 --- a/obj/Debug/net8.0-windows/Views/Configuration/LevelConfigPage.g.cs +++ /dev/null @@ -1,75 +0,0 @@ -#pragma checksum "..\..\..\..\..\Views\Configuration\LevelConfigPage.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F3041352C1BDD94BAA43661514FBE28513A3262E" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using SparkClient.Views; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace SparkClient.Views.Configuration { - - - /// - /// LevelConfigPage - /// - public partial class LevelConfigPage : System.Windows.Controls.Border, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/SparkClient;component/views/configuration/levelconfigpage.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Views\Configuration\LevelConfigPage.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - this._contentLoaded = true; - } - } -} - diff --git a/obj/Debug/net8.0-windows/Views/Grading/DiamondSelect.g.cs b/obj/Debug/net8.0-windows/Views/Grading/DiamondSelect.g.cs deleted file mode 100644 index 559eef4..0000000 --- a/obj/Debug/net8.0-windows/Views/Grading/DiamondSelect.g.cs +++ /dev/null @@ -1,75 +0,0 @@ -#pragma checksum "..\..\..\..\..\Views\Grading\DiamondSelect.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0026F4C6E3DE5E7A9AB8F661DB7878B11FD259FD" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using SparkClient.Views.Grading; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace SparkClient.Views.Grading { - - - /// - /// DiamondSelect - /// - public partial class DiamondSelect : System.Windows.Controls.Border, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/SparkClient;component/views/grading/diamondselect.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Views\Grading\DiamondSelect.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - this._contentLoaded = true; - } - } -} - diff --git a/obj/Debug/net8.0-windows/Views/Grading/GradingResult.g.cs b/obj/Debug/net8.0-windows/Views/Grading/GradingResult.g.cs deleted file mode 100644 index c9f8294..0000000 --- a/obj/Debug/net8.0-windows/Views/Grading/GradingResult.g.cs +++ /dev/null @@ -1,75 +0,0 @@ -#pragma checksum "..\..\..\..\..\Views\Grading\GradingResult.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A8DAD884147E3D277197F88E51A3CED1ACA250D2" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using SparkClient.Views.Grading; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace SparkClient.Views.Grading { - - - /// - /// GradingResult - /// - public partial class GradingResult : System.Windows.Controls.Border, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/SparkClient;component/views/grading/gradingresult.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Views\Grading\GradingResult.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - this._contentLoaded = true; - } - } -} - diff --git a/obj/Debug/net8.0-windows/Views/HelperPage.g.cs b/obj/Debug/net8.0-windows/Views/HelperPage.g.cs deleted file mode 100644 index 54b7485..0000000 --- a/obj/Debug/net8.0-windows/Views/HelperPage.g.cs +++ /dev/null @@ -1,75 +0,0 @@ -#pragma checksum "..\..\..\..\Views\HelperPage.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "04AEFDBEF15BBE1B692DFE2E2FE53979C391092A" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using SparkClient.Views; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace SparkClient.Views { - - - /// - /// HelperPage - /// - public partial class HelperPage : System.Windows.Controls.Border, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/SparkClient;component/views/helperpage.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\Views\HelperPage.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.10.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - this._contentLoaded = true; - } - } -} - diff --git a/obj/Debug/net8.0-windows/apphost.exe b/obj/Debug/net8.0-windows/apphost.exe index 64681c2..7c30d7b 100644 Binary files a/obj/Debug/net8.0-windows/apphost.exe and b/obj/Debug/net8.0-windows/apphost.exe differ diff --git a/obj/Debug/net8.0-windows/ref/SparkClient.dll b/obj/Debug/net8.0-windows/ref/SparkClient.dll deleted file mode 100644 index 48b9056..0000000 Binary files a/obj/Debug/net8.0-windows/ref/SparkClient.dll and /dev/null differ diff --git a/obj/Debug/net8.0-windows/refint/SparkClient.dll b/obj/Debug/net8.0-windows/refint/SparkClient.dll deleted file mode 100644 index 48b9056..0000000 Binary files a/obj/Debug/net8.0-windows/refint/SparkClient.dll and /dev/null differ