AirScout/OxyPlot/Source/Examples/Windows/SimpleDemo/MainPage.xaml

18 wiersze
638 B
XML

<Page
x:Class="SimpleDemo.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:SimpleDemo"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:windows="using:OxyPlot.Windows"
mc:Ignorable="d">
<Page.DataContext>
<local:MainViewModel/>
</Page.DataContext>
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<windows:PlotView Model="{Binding Model}"/>
</Grid>
</Page>