-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestScreen.xaml
More file actions
36 lines (31 loc) · 1.24 KB
/
TestScreen.xaml
File metadata and controls
36 lines (31 loc) · 1.24 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
<UserControl x:Class="FIRST.TestScreen"
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="300" d:DesignWidth="300">
<TabControl>
<!-- <TabControl.Template>
<ControlTemplate>
<Grid>
<ItemsPresenter Name="ItemsPresenter"/>
<ContentPresenter Name="PART_SelectedContentHost">
</ContentPresenter>
</Grid>
</ControlTemplate>
</TabControl.Template>-->
<TabControl.ItemTemplate>
<ItemContainerTemplate>
<TextBlock Text="gadfa"/>
</ItemContainerTemplate>
</TabControl.ItemTemplate>
<TabItem Header="Page1">
<Grid>
<TextBlock Text="hi"/>
</Grid>
</TabItem>
<TabItem Header="Page2">
</TabItem>
</TabControl>
</UserControl>