重命名控件库

This commit is contained in:
GG Z
2026-01-02 17:30:41 +08:00
parent fa0d280130
commit 785e5de36e
277 changed files with 1068 additions and 1242 deletions

View File

@@ -1,15 +1,15 @@
<Application
StartupUri="MainWindow.xaml"
x:Class="DrfxFontFixer.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:DrfxFontFixer"
StartupUri="MainWindow.xaml">
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/Light.xaml" />
<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/ColorPalette/LightBlue.xaml" />
<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/Styles.xaml" />
<ResourceDictionary Source="pack://application:,,,/Melskin;component/Themes/Light.xaml" />
<ResourceDictionary Source="pack://application:,,,/Melskin;component/Themes/ColorPalette/LightBlue.xaml" />
<ResourceDictionary Source="pack://application:,,,/Melskin;component/Themes/Styles.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>

View File

@@ -11,6 +11,6 @@
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NeoUI\NeoUI\NeoUI.csproj" />
<ProjectReference Include="..\NeoUI\Melskin\Melskin.csproj" />
</ItemGroup>
</Project>

View File

@@ -1,4 +1,4 @@
<n:NeoWindow
<ms:MelWindow
Height="700"
Title="DaVinci Resolve drfx 字体替换"
Width="1000"
@@ -7,7 +7,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:n="https://github.com/ShrlAlgo/NeoUI"
xmlns:ms="https://github.com/ShrlAlgo/Melskin"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid Margin="5">
<Grid.RowDefinitions>
@@ -24,7 +24,7 @@
<GroupBox Grid.Row="0" Header="添加需要处理的 drfx 文件">
<ListBox BorderThickness="1" x:Name="FileListBox" />
</GroupBox>
<n:FlexibleRowPanel Grid.Column="0" Grid.Row="1">
<ms:FlexibleRowPanel Grid.Column="0" Grid.Row="1">
<Button
Click="AddFilesButton_Click"
Content="添加drfx文件"
@@ -33,12 +33,12 @@
Click="ClearListButton_Click"
Content="清空处理列表"
x:Name="ClearListButton" />
</n:FlexibleRowPanel>
<n:FlexibleRowPanel
</ms:FlexibleRowPanel>
<ms:FlexibleRowPanel
Grid.Column="0"
Grid.ColumnSpan="2"
Grid.Row="2">
<TextBox n:FlexibleRowPanel.Span="2" x:Name="OutputPath" />
<TextBox ms:FlexibleRowPanel.Span="2" x:Name="OutputPath" />
<Button
Click="BrowserOutputPathButton_Click"
Content="选择输出路径"
@@ -48,7 +48,7 @@
Content="打开输出目录"
IsEnabled="False"
x:Name="OpenOutputButton" />
</n:FlexibleRowPanel>
</ms:FlexibleRowPanel>
<GroupBox
FontWeight="Bold"
Grid.Column="0"
@@ -176,4 +176,4 @@
x:Name="StartButton" />
</Grid>
</Grid>
</n:NeoWindow>
</ms:MelWindow>