-
Notifications
You must be signed in to change notification settings - Fork 94
/
ExceptionalOutputForm.xeto
37 lines (35 loc) · 1.14 KB
/
ExceptionalOutputForm.xeto
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
<?xml version="1.0" encoding="UTF-8"?>
<Form
xmlns="http://schema.picoe.ca/eto.forms"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:resource="clr-namespace:OpenTrace.Properties"
Title="{x:Static resource:Resources.EXC_OUTPUT_FORM_TITLE}"
MinimumSize="600,450"
Padding="10"
Closing="Form_Closing"
>
<TableLayout Spacing="5,5">
<TableRow>
<TableCell ScaleWidth="False">
<Label Text="{x:Static resource:Resources.EXC_OUTPUT_FORM_PROMPT}" Width="500" Wrap="Word"></Label>
</TableCell>
</TableRow>
<TableRow ScaleHeight="True">
<TextArea x:Name="OutputContainer" ReadOnly="True"></TextArea>
</TableRow>
<TableLayout Spacing="5,5">
<TableRow>
<TableCell ScaleWidth="True"></TableCell>
<TableCell>
<Button Click="ReportButton_Click" Text="NextTrace Wiki"></Button>
</TableCell>
<TableCell>
<Button Click="ReportButton_Click" Text="{x:Static resource:Resources.EXC_OUTPUT_FORM_REPORT}"></Button>
</TableCell>
<TableCell>
<Button Click="CloseButton_Click" Text="{x:Static resource:Resources.CLOSE}"></Button>
</TableCell>
</TableRow>
</TableLayout>
</TableLayout>
</Form>