зеркало из https://github.com/telerik/xaml-sdk.git
24 строки
840 B
XML
24 строки
840 B
XML
<Window x:Class="SeriesProvider.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
|
|
xmlns:example="clr-namespace:SeriesProvider"
|
|
Title="MainWindow" Height="350" Width="525">
|
|
|
|
<FrameworkElement.DataContext>
|
|
<example:MainViewModel />
|
|
</FrameworkElement.DataContext>
|
|
|
|
<TabControl>
|
|
<TabItem Header="Collection Index">
|
|
<example:CollectionIndex />
|
|
</TabItem>
|
|
<TabItem Header="Type Converter">
|
|
<example:TypeConverter />
|
|
</TabItem>
|
|
<TabItem Header="Series Created">
|
|
<example:SeriesCreated />
|
|
</TabItem>
|
|
</TabControl>
|
|
</Window>
|