62 lines
1.9 KiB
XML
62 lines
1.9 KiB
XML
<Window
|
|
Title="PhotoRenamerGui"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
mc:Ignorable="d"
|
|
x:Class="PhotoRenamerGui.MainWindow"
|
|
x:DataType="photoRenamerGui:MainWindowViewModel"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:photoRenamerGui="clr-namespace:PhotoRenamerGui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Window.DataContext>
|
|
<photoRenamerGui:MainWindowViewModel />
|
|
</Window.DataContext>
|
|
<Grid ColumnDefinitions="Auto,*,Auto" RowDefinitions="Auto,Auto,*">
|
|
<Grid.Styles>
|
|
<Style Selector="TemplatedControl.space">
|
|
<Setter Property="Margin" Value="5" />
|
|
</Style>
|
|
</Grid.Styles>
|
|
<Label
|
|
Classes="space"
|
|
Content="Input Folder"
|
|
Grid.Column="0"
|
|
Grid.Row="0"
|
|
VerticalAlignment="Center" />
|
|
<Label
|
|
Classes="space"
|
|
Content="Output Folder"
|
|
Grid.Column="0"
|
|
Grid.Row="1"
|
|
VerticalAlignment="Center" />
|
|
<TextBox
|
|
Classes="space"
|
|
Grid.Column="1"
|
|
Grid.Row="0"
|
|
Text="{Binding InputFolder}"
|
|
Watermark="Input" />
|
|
<TextBox
|
|
Classes="space"
|
|
Grid.Column="1"
|
|
Grid.Row="1"
|
|
Text="{Binding OutputFolder}"
|
|
Watermark="Output" />
|
|
<Button
|
|
Classes="space"
|
|
Grid.Column="2"
|
|
Grid.Row="0"
|
|
VerticalAlignment="Stretch">
|
|
...
|
|
</Button>
|
|
<Button
|
|
Classes="space"
|
|
Grid.Column="2"
|
|
Grid.Row="1"
|
|
VerticalAlignment="Stretch">
|
|
...
|
|
</Button>
|
|
</Grid>
|
|
</Window>
|