-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyUserControl.xaml
27 lines (26 loc) · 1.04 KB
/
MyUserControl.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
<UserControl x:Class="SO_75067133.MyUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid Background="Blue"
Margin="10">
<Grid Background="white"
Margin="10">
<Grid Background="Red"
Margin="10">
<Grid Background="White"
Margin="10"
MinHeight="150"
MinWidth="150">
<Label x:Name="Label"
Content="Not Loaded"
HorizontalAlignment="Center"
VerticalAlignment="Center" />
</Grid>
</Grid>
</Grid>
</Grid>
</UserControl>