Files
OxyPlot/Source/Examples/WPF/WpfExamples/Examples/ControllerDemo/MainWindow.xaml
2023-09-02 09:24:59 +02:00

28 lines
1.2 KiB
XML

<Window x:Class="ControllerDemo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:oxy="clr-namespace:OxyPlot.Wpf;assembly=OxyPlot.Wpf"
xmlns:local="clr-namespace:ControllerDemo"
Title="OxyPlot Controller Demo" Height="480" Width="640">
<Window.DataContext>
<local:MainViewModel />
</Window.DataContext>
<TabControl>
<TabItem Header="Custom controller">
<!-- The OxyPlot control is binding to a PlotModel and a PlotController in the MainViewModel -->
<oxy:PlotView Model="{Binding Model}"
Controller="{Binding Controller}" />
</TabItem>
<TabItem Header="Default controllers">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<oxy:PlotView Model="{Binding Model1}" />
<oxy:PlotView Grid.Column="1" x:Name="plotView2" Model="{Binding Model2}" />
</Grid>
</TabItem>
</TabControl>
</Window>