-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDynamicReportQualificationResultWindow.xaml
More file actions
61 lines (58 loc) · 3.25 KB
/
Copy pathDynamicReportQualificationResultWindow.xaml
File metadata and controls
61 lines (58 loc) · 3.25 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Window x:Class="ArIED61850Tester.DynamicReportQualificationResultWindow"
x:ClassModifier="internal"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="G2 Dynamic Reporting Commissioning Evidence"
Width="980" Height="720" MinWidth="760" MinHeight="520"
WindowStartupLocation="CenterOwner"
Background="#F4F7FB"
FontFamily="Aptos, Segoe UI Variable Text, Segoe UI, Calibri">
<Grid Margin="16">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="12"/>
<RowDefinition Height="*"/>
<RowDefinition Height="12"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Border Background="White" BorderBrush="#D7E0EA" BorderThickness="1" CornerRadius="14" Padding="16">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<StackPanel>
<TextBlock x:Name="HeaderText" Text="G2 Dynamic Reporting Commissioning" FontSize="19" FontWeight="SemiBold" Foreground="#1F2937"/>
<TextBlock x:Name="SummaryText" Margin="0,6,0,0" TextWrapping="Wrap" FontSize="12.5" Foreground="#536275"/>
</StackPanel>
<Border Grid.Column="1" x:Name="StateBadge" Margin="14,0,0,0" Padding="10,5" CornerRadius="9"
Background="#FFF8E6" BorderBrush="#F2D28A" BorderThickness="1" VerticalAlignment="Top">
<TextBlock x:Name="StateText" Text="Commissioning" FontSize="11" FontWeight="Bold" Foreground="#946200"/>
</Border>
</Grid>
</Border>
<Border Grid.Row="2" Background="White" BorderBrush="#D7E0EA" BorderThickness="1" CornerRadius="14" Padding="10">
<TextBox x:Name="EvidenceTextBox"
IsReadOnly="True" AcceptsReturn="True" AcceptsTab="True"
TextWrapping="NoWrap"
HorizontalScrollBarVisibility="Auto"
VerticalScrollBarVisibility="Auto"
FontFamily="Cascadia Mono, Consolas"
FontSize="11.2"
Background="#FBFCFE" Foreground="#263445"
BorderThickness="0" Padding="10"/>
</Border>
<Grid Grid.Row="4">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="8"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<TextBlock Text="Production dynamic reporting remains OFF unless later G2 gates explicitly prove controlled scale-out and all G2.6 physical regressions."
TextWrapping="Wrap" VerticalAlignment="Center" FontSize="11" Foreground="#667085"/>
<Button Grid.Column="1" Content="Copy Evidence" Click="CopyEvidence_Click" Padding="14,7"/>
<Button Grid.Column="3" Content="Close" Click="Close_Click" Padding="18,7" IsDefault="True"/>
</Grid>
</Grid>
</Window>