维护更新

This commit is contained in:
GG Z
2026-02-17 22:17:23 +08:00
parent b3479d1f39
commit 3816edbdb4
72 changed files with 272 additions and 2976 deletions

View File

@@ -1,6 +1,6 @@
<Application
StartupUri="MainWindow.xaml"
x:Class="VibeWPFTest.App"
x:Class="MelskinTest.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Application.Resources>

View File

@@ -8,7 +8,7 @@ using System.Windows;
using Melskin;
namespace VibeWPFTest
namespace MelskinTest
{
/// <summary>
/// Interaction logic for App.xaml
@@ -18,7 +18,7 @@ namespace VibeWPFTest
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
//Splash.ShowAsync("pack://application:,,,/VibeWPFTest;component/Resources/Images/ImageTest.png");
//Splash.ShowAsync("pack://application:,,,/MelskinTest;component/Resources/Images/ImageTest.png");
//MainWindow = new MainWindow();
//Splash.CloseOnLoaded(MainWindow);
//MainWindow.Show();

View File

@@ -1,7 +1,7 @@
<UserControl
x:Class="VibeWPFTest.ColorPaletteControl"
x:Class="MelskinTest.ColorPaletteControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:local="clr-namespace:VibeWPFTest"
xmlns:local="clr-namespace:MelskinTest"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<UserControl.Resources>
<DataTemplate x:Key="ColorItemTemplate">

View File

@@ -7,7 +7,7 @@ using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
namespace VibeWPFTest
namespace MelskinTest
{
public partial class ColorPaletteControl : UserControl
{

View File

@@ -4,10 +4,10 @@
Title="配色"
Width="800"
mc:Ignorable="d"
x:Class="VibeWPFTest.ColorPaletteWindow"
x:Class="MelskinTest.ColorPaletteWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:VibeWPFTest"
xmlns:local="clr-namespace:MelskinTest"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:n="https://github.com/ShrlAlgo/Melskin"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

View File

@@ -12,7 +12,7 @@ using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace VibeWPFTest
namespace MelskinTest
{
/// <summary>
/// ColorPaletteWindow.xaml 的交互逻辑

View File

@@ -5,10 +5,10 @@
Width="800"
d:DesignHeight="800"
mc:Ignorable="d"
x:Class="VibeWPFTest.ControlTestWindow"
x:Class="MelskinTest.ControlTestWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:dataModel="clr-namespace:VibeWPFTest.DataModel"
xmlns:dataModel="clr-namespace:MelskinTest.DataModel"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ms="https://github.com/ShrlAlgo/Melskin"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

View File

@@ -13,7 +13,7 @@ using System.Windows;
using Microsoft.Win32;
using Melskin.Controls;
namespace VibeWPFTest;
namespace MelskinTest;
/// <summary>
/// ControlTestWindow.xaml 的交互逻辑

View File

@@ -6,7 +6,7 @@ using System.Windows.Input;
using CommunityToolkit.Mvvm.Input;
namespace VibeWPFTest.DataModel
namespace MelskinTest.DataModel
{
public enum Gender
{

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace VibeWPFTest.DataModel
namespace MelskinTest.DataModel
{
public class TreeItemData
{

View File

@@ -4,10 +4,10 @@
Width="820"
d:DataContext="{d:DesignInstance Type=local:IconsWindow}"
mc:Ignorable="d"
x:Class="VibeWPFTest.IconsWindow"
x:Class="MelskinTest.IconsWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:VibeWPFTest"
xmlns:local="clr-namespace:MelskinTest"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ms="https://github.com/ShrlAlgo/Melskin"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

View File

@@ -19,7 +19,7 @@ using Microsoft.Win32;
using Melskin.Assets;
namespace VibeWPFTest;
namespace MelskinTest;
/// <summary>
/// IconsWindow.xaml 的交互逻辑
/// </summary>

View File

@@ -10,15 +10,15 @@
d:Height="Auto"
d:SizeToContent="WidthAndHeight"
mc:Ignorable="d"
x:Class="VibeWPFTest.MainWindow"
x:Class="MelskinTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:dm="clr-namespace:VibeWPFTest.DataModel"
xmlns:dm="clr-namespace:MelskinTest.DataModel"
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ms="https://github.com/ShrlAlgo/Melskin"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:test="clr-namespace:VibeWPFTest"
xmlns:test="clr-namespace:MelskinTest"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ms:MelWindow.TitleBarLeftContent>

View File

@@ -18,7 +18,7 @@ using CommunityToolkit.Mvvm.Input;
using Melskin.Appearance;
using Melskin.Controls;
namespace VibeWPFTest;
namespace MelskinTest;
/// <summary>
/// MainWindow.xaml 的交互逻辑

View File

@@ -5,13 +5,13 @@
d:DataContext="{d:DesignInstance Type=neoUiTest:MainWindow}"
d:Height="Auto"
mc:Ignorable="d"
x:Class="VibeWPFTest.NeumorphismWindow"
x:Class="MelskinTest.NeumorphismWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:dataModel="clr-namespace:VibeWPFTest.DataModel"
xmlns:dataModel="clr-namespace:MelskinTest.DataModel"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ms="https://github.com/ShrlAlgo/Melskin"
xmlns:neoUiTest="clr-namespace:VibeWPFTest"
xmlns:neoUiTest="clr-namespace:MelskinTest"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ms:MelWindow.Resources>

View File

@@ -12,7 +12,7 @@ using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace VibeWPFTest
namespace MelskinTest
{
/// <summary>
/// NeumorphismWindow.xaml 的交互逻辑

View File

@@ -7,7 +7,7 @@ using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace VibeWPFTest
namespace MelskinTest
{
public class MainViewModel : INotifyPropertyChanged
{