65 lines
3.4 KiB
XML
65 lines
3.4 KiB
XML
<Window x:Class="BallanceTasEditor.Views.NewFileDialog"
|
|
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"
|
|
xmlns:vm="clr-namespace:BallanceTasEditor.ViewModels"
|
|
xmlns:conveter="clr-namespace:BallanceTasEditor.Converters"
|
|
d:DataContext="{d:DesignInstance vm:NewFileDialog}"
|
|
mc:Ignorable="d" WindowStartupLocation="CenterOwner" ResizeMode="NoResize" ShowInTaskbar="False"
|
|
Title="New File" Height="250" Width="400" Icon="/Assets/NewFile.ico">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Grid.Row="0" Text="Create new TAS file with given FPS and frame count."
|
|
Style="{StaticResource NoteBannerStyle}"/>
|
|
|
|
<Grid Grid.Row="1">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid Margin="10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto"/>
|
|
<ColumnDefinition Width="auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Image Source="/Assets/Count.ico" RenderOptions.BitmapScalingMode="HighQuality"
|
|
Grid.Column="0" Grid.Row="0" Width="16" Height="16" VerticalAlignment="Center"/>
|
|
<Image Source="/Assets/Fps.ico" RenderOptions.BitmapScalingMode="HighQuality"
|
|
Grid.Column="0" Grid.Row="1" Width="16" Height="16" VerticalAlignment="Center"/>
|
|
|
|
<TextBlock Margin="5" Grid.Column="1" Grid.Row="0" Text="Count" VerticalAlignment="Center"/>
|
|
<TextBlock Margin="5" Grid.Column="1" Grid.Row="1" Text="FPS" VerticalAlignment="Center"/>
|
|
<TextBlock Margin="5" Grid.Column="1" Grid.Row="2" Text="Delta Time" VerticalAlignment="Center"/>
|
|
|
|
<TextBox Margin="5" Padding="3" Grid.Row="0" Grid.Column="2" VerticalAlignment="Center"
|
|
Text="{Binding Count, Mode=TwoWay}"/>
|
|
<TextBox Margin="5" Padding="3" Grid.Row="1" Grid.Column="2" VerticalAlignment="Center"
|
|
Text="{Binding Fps, Mode=TwoWay}"/>
|
|
<TextBlock Margin="5" Padding="3" Grid.Row="2" Grid.Column="2" VerticalAlignment="Center"
|
|
Text="{Binding Fps, Mode=OneWay, Converter={x:Static conveter:ConverterWarehouse.FpsConverter}}"/>
|
|
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="2" HorizontalAlignment="Right" Margin="10">
|
|
<Button Content="OK" Margin="5" Style="{StaticResource OkButtonStyle}" IsDefault="True"/>
|
|
<Button Content="Cancel" Margin="5" Style="{StaticResource CancelButtonStyle}"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|