重命名控件库
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user