-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
57 lines (57 loc) · 2.26 KB
/
Copy pathMainWindow.xaml
File metadata and controls
57 lines (57 loc) · 2.26 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
<Window x:Class="Rendering.MainWindow"
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"
mc:Ignorable="d"
Title="MainWindow"
Height="450"
Width="800"
ResizeMode="NoResize"
WindowStartupLocation="CenterScreen"
WindowState="Maximized"
WindowStyle="None"
FontFamily="Courier New"
Cursor="Cross"
ContentRendered="Window_ContentRendered"
SizeChanged="Window_SizeChanged"
PreviewKeyDown="Window_PreviewKeyDown"
PreviewKeyUp="Window_PreviewKeyUp"
MouseMove="Window_MouseMove"
MouseWheel="Window_MouseWheel"
MouseLeftButtonDown="Window_MouseLeftButtonDown">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Image x:Name="imgScreen" Grid.Column="0" Grid.Row="0" Grid.ColumnSpan="2" Grid.RowSpan="2" />
<TextBlock x:Name="tbInfo" Grid.Column="0" Grid.Row="0"
TextWrapping="Wrap"
TextAlignment="Left"
FontSize="13"
Cursor="No"
IsEnabled="False"
Visibility="Visible" />
<TextBlock x:Name="tbHelp" Grid.Column="1" Grid.Row="0" Grid.RowSpan="2"
TextWrapping="Wrap"
TextAlignment="Right"
FontSize="13"
Cursor="No"
IsEnabled="False"
Visibility="Visible" />
<TextBlock x:Name="tbError" Grid.Column="0" Grid.Row="1"
TextWrapping="Wrap"
TextAlignment="Left"
VerticalAlignment="Bottom"
FontSize="13"
Cursor="No"
IsEnabled="False"
Foreground="Red"
Visibility="Visible" />
</Grid>
</Window>