summaryrefslogtreecommitdiffstats
path: root/MainWindow.xaml
blob: 4f5e72dfef8a28c7b4311f54c9762ade9712230a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<Window x:Class="ftpmpv.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="ftpmpv" Height="550" Width="728" Loaded="Window_Loaded">
	<Grid Margin="0,0,2,1">
		<Grid.ColumnDefinitions>
			<ColumnDefinition Width="311*"/>
			<ColumnDefinition Width="407*"/>
		</Grid.ColumnDefinitions>
		<TreeView x:Name="dirs" Margin="10,10,2,10" KeyUp="dirs_KeyUp" MouseDoubleClick="dirs_MouseDoubleClick"/>
		<ListBox x:Name="files" Margin="3,10,10,10" KeyUp="files_KeyUp" MouseDoubleClick="files_MouseDoubleClick" Grid.Column="1"/>
	</Grid>
</Window>