-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMainWindow.xaml
38 lines (37 loc) · 2.37 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<Window x:Class="RepairTasks.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Repair Tasks" Height="350" Width="625">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="40" />
<RowDefinition Height="*" />
<RowDefinition Height="35" />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Height="40" HorizontalAlignment="Left" Name="stackPanel1" VerticalAlignment="Top" Width="503" Orientation="Horizontal">
<Button Content="Scan" Margin="10,0,0,0" Height="23" Name="scan" Width="75" FontSize="12" Click="scan_Click" IsEnabled="{Binding Path=CanScan}"/>
<Button Content="Repair" Margin="10,0,0,0" Height="23" Name="repair" Width="75" FontSize="12" Click="repair_Click" IsEnabled="{Binding Path=CanRepair}" />
<RadioButton Margin="40,0,0,0" Content="Recycle existing tasks" Height="16" Name="rbRecycle" FontSize="12" IsChecked="True" />
<RadioButton Margin="10,0,0,0" Content="Take tasks from backup" Height="16" Name="rbOther" FontSize="12" />
</StackPanel>
<ListBox Grid.Row="1" Name="lbReports" ItemsSource="{Binding Path=Reports}" FontSize="12" SelectionChanged="lbReports_SelectionChanged" >
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=Text}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<Grid Grid.Row="2">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="100"/>
<ColumnDefinition Width="100"/>
<ColumnDefinition Width="100"/>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" Margin="12,7,0,0" Name="textBlock1" Text="{Binding Path=Status}" FontSize="12" />
<Button Grid.Column="1" Content="Unplug Task" Margin="10,7,5,5" Name="unplug" FontSize="12" Click="unplug_Click" IsEnabled="{Binding Path=CanUnplug}"/>
<Button Grid.Column="2" Content="Backup Tasks" Margin="10,7,5,5" Name="backup" FontSize="12" Click="backup_Click" />
<Button Grid.Column="3" Content="Save Results" Margin="10,7,5,5" Name="save" FontSize="12" Click="save_Click" />
</Grid>
</Grid>
</Window>