Files
infineon_cs_hmi/uniper_hmi/UniperHMI/Pages/Views/UnitOverviewPage.xaml
2026-02-11 08:38:36 +01:00

17 lines
805 B
XML

<Page x:Class="UniperHMI.UnitOverviewPage"
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"
xmlns:local="clr-namespace:UniperHMI"
mc:Ignorable="d"
d:DataContext="{d:DesignInstance Type=local:UnitOverviewPageVM, IsDesignTimeCreatable=False}"
Width="Auto" Height="Auto"
Title="UnitOverviewPage"
x:Name="root">
<Grid>
<local:UnitDetailsControl UnitName="{Binding ElementName=root, Path=DataContext.UnitName}" DataContext="{Binding UnitControlVM}" HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>
</Page>