2025-11-16 15:44:14 +08:00
|
|
|
<Window x:Class="BallanceTasEditor.Views.PreferenceDialog"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:local="clr-namespace:BallanceTasEditor.Views"
|
2025-11-17 12:35:47 +08:00
|
|
|
xmlns:styles="clr-namespace:BallanceTasEditor.Styles"
|
2025-11-16 15:44:14 +08:00
|
|
|
mc:Ignorable="d" WindowStartupLocation="CenterOwner" WindowStyle="ToolWindow"
|
2025-11-17 10:42:50 +08:00
|
|
|
Title="Editor Preference" Height="450" Width="400" Icon="/Assets/Preference.ico">
|
2025-11-16 15:44:14 +08:00
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
<ScrollViewer Grid.Row="0" VerticalScrollBarVisibility="Visible">
|
|
|
|
|
<StackPanel Orientation="Vertical">
|
2025-11-17 12:35:47 +08:00
|
|
|
<!-- TODO: This icon is wrong. -->
|
|
|
|
|
<GroupBox Header="Editor Layout" Margin="10" Padding="10"
|
|
|
|
|
Style="{StaticResource AccessoryIconGroupBox}" styles:AccessoryIcon.Icon="/Assets/PasteFrame.ico">
|
2025-11-16 15:44:14 +08:00
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<RadioButton Content="Horizontal Layout" GroupName="EditorLayout" Grid.Column="0"/>
|
|
|
|
|
<RadioButton Content="Vertical Layout" GroupName="EditorLayout" Grid.Column="1"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</GroupBox>
|
2025-11-17 12:35:47 +08:00
|
|
|
<GroupBox Header="Paste Behavior" Margin="10" Padding="10"
|
|
|
|
|
Style="{StaticResource AccessoryIconGroupBox}" styles:AccessoryIcon.Icon="/Assets/PasteFrame.ico">
|
2025-11-16 15:44:14 +08:00
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<RadioButton Content="Insert Paste" GroupName="PasteBehavior" Grid.Column="0"/>
|
|
|
|
|
<RadioButton Content="Overwritten Paste" GroupName="PasteBehavior" Grid.Column="1"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</GroupBox>
|
2025-11-17 12:35:47 +08:00
|
|
|
<GroupBox Header="Frame Count" Margin="10" Padding="10"
|
|
|
|
|
Style="{StaticResource AccessoryIconGroupBox}" styles:AccessoryIcon.Icon="/Assets/Count.ico">
|
2025-11-16 15:44:14 +08:00
|
|
|
<TextBox Padding="3"/>
|
|
|
|
|
</GroupBox>
|
2025-11-17 12:35:47 +08:00
|
|
|
<GroupBox Header="Game Path" Margin="10" Padding="10"
|
|
|
|
|
Style="{StaticResource AccessoryIconGroupBox}" styles:AccessoryIcon.Icon="/Assets/SaveFileThenRunGame.ico">
|
2025-11-16 15:44:14 +08:00
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBox IsReadOnly="True" Padding="3" Grid.Column="0"/>
|
|
|
|
|
<Button Content="Browse" Margin="5,0,0,0" MinWidth="80" Grid.Column="1"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</GroupBox>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ScrollViewer>
|
|
|
|
|
|
2025-11-17 12:35:47 +08:00
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="1" HorizontalAlignment="Right" Margin="10">
|
|
|
|
|
<Button Content="OK" Margin="5" Style="{StaticResource OkButtonStyle}" IsDefault="True"/>
|
|
|
|
|
<Button Content="Cancel" Margin="5" Style="{StaticResource CancelButtonStyle}"/>
|
2025-11-16 15:44:14 +08:00
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Window>
|