You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.4 KiB
34 lines
1.4 KiB
<Window x:Class="ImageLoader.MainWindow"
|
|
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:ImageLoader"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="60"/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid Grid.Row="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="200"/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<ScrollViewer VerticalScrollBarVisibility="Auto">
|
|
<WrapPanel Grid.Column="0" Name="pnlImage"/>
|
|
</ScrollViewer>
|
|
|
|
<Canvas Grid.Column="1" Name="cvsImage"/>
|
|
</Grid>
|
|
|
|
<Label Grid.Row="0" Content="Folder: " HorizontalContentAlignment="Left" VerticalContentAlignment="Center"/>
|
|
<TextBox Grid.Row="0" x:Name="txtFolder" Width="650" Margin="10" VerticalAlignment="Center"/>
|
|
<Button Grid.Row="0" x:Name="btnFolder" Width="50" Margin="10" HorizontalAlignment="Right" VerticalAlignment="Center" Content="Folder"
|
|
Click="btnFolder_Click"/>
|
|
<!--<StackPanel Grid.Row="1"/>-->
|
|
</Grid>
|
|
</Window>
|
|
|