Files
effector.plugin.fivelakes/Effector.Plugin.FiveLakes/PluginUI/PluginUIV.xaml
T
2025-07-08 16:18:03 +02:00

22 lines
886 B
XML

<Grid x:Class="PluginUIV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Effector.Plugin.FiveLakes"
DataContext="{StaticResource PluginUIVM}">
<TabControl SelectedIndex="{Binding SelPage}"
Style="{StaticResource NoHeader_TabControl}">
<TabItem Name="DoorList"
Header="DoorList">
<local:DoorListPageV DataContext="{StaticResource DoorListVM}"/>
</TabItem>
<TabItem Name="Machine"
Header="Machine">
<local:MachinePageV DataContext="{StaticResource MachinePageVM}"/>
</TabItem>
<TabItem Name="Statistics"
Header="Statistics">
<local:StatisticsPageV DataContext="{StaticResource StatisticsPageVM}"/>
</TabItem>
</TabControl>
</Grid>