-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScanPage.xaml
More file actions
78 lines (73 loc) · 2.74 KB
/
Copy pathScanPage.xaml
File metadata and controls
78 lines (73 loc) · 2.74 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="utf-8" ?>
<Page
x:Class="EekContextMenu.ScanPage"
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"
Background="Transparent"
mc:Ignorable="d">
<Grid Padding="20" RowSpacing="10">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<StackPanel Spacing="2">
<TextBlock
Style="{ThemeResource TitleTextBlockStyle}"
Text="EEK scan" />
<TextBlock
x:Name="TargetPathText"
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
TextTrimming="CharacterEllipsis" />
</StackPanel>
<InfoBar
x:Name="StatusInfoBar"
Grid.Row="1"
IsClosable="False"
IsOpen="True"
Severity="Informational"
Title="Starting" />
<Border
Grid.Row="2"
Padding="8"
Background="{ThemeResource LayerFillColorDefaultBrush}"
BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}"
BorderThickness="1"
CornerRadius="8">
<TextBox
x:Name="OutputBox"
AcceptsReturn="True"
Background="Transparent"
BorderThickness="0"
FontFamily="Consolas"
IsReadOnly="True"
ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Auto"
TextWrapping="NoWrap"
/>
</Border>
<Grid Grid.Row="3" ColumnSpacing="12">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock
x:Name="LogPathText"
VerticalAlignment="Center"
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
TextTrimming="CharacterEllipsis" />
<Button
x:Name="CancelButton"
Grid.Column="1"
Click="CancelButton_Click">
<StackPanel Orientation="Horizontal" Spacing="8">
<FontIcon FontSize="16" Glyph="" />
<TextBlock Text="Stop" />
</StackPanel>
</Button>
</Grid>
</Grid>
</Page>