33 lines
1.8 KiB
XML
33 lines
1.8 KiB
XML
<Window x:Class="CordoPlot.StartDialog"
|
|
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:CordoPlot"
|
|
mc:Ignorable="d"
|
|
Title="StartDialog" Height="450" Width="800">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="43*"/>
|
|
<ColumnDefinition Width="523*"/>
|
|
<ColumnDefinition Width="170*"/>
|
|
<ColumnDefinition Width="64*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="62*"/>
|
|
<RowDefinition Height="51*"/>
|
|
<RowDefinition Height="41*"/>
|
|
<RowDefinition Height="29*"/>
|
|
<RowDefinition Height="43*"/>
|
|
<RowDefinition Height="173*"/>
|
|
<RowDefinition Height="35*"/>
|
|
</Grid.RowDefinitions>
|
|
<Button Click="Button_Click" Grid.Row="2" Margin="10,3,17,10" Content="Folder" Grid.Column="2" />
|
|
<DataGrid Name="Fileoverview" ItemsSource="{Binding}" SelectionUnit="Cell" IsReadOnly="True" SelectedCellsChanged="Fileoverview_SelectedCellsChanged" CurrentCellChanged="Fileoverview_CurrentCellChanged" Grid.Column="1" HorizontalAlignment="Center" Height="266" Grid.Row="2" VerticalAlignment="Top" Width="503" d:ItemsSource="{d:SampleData ItemCount=5}" Margin="0,10,0,0" Grid.RowSpan="4"/>
|
|
|
|
|
|
<Label Name="lblProgress" Grid.Column="2" Margin="10,41,10,0" Grid.Row="2" Content="Open Files" Grid.RowSpan="2" FontSize="7"></Label>
|
|
<ProgressBar Minimum="0" Maximum="100" Value="75" Name="pbStatus" Grid.Column="2" Margin="10,10,10,10" Grid.Row="4" />
|
|
</Grid>
|
|
</Window>
|