BOB/ProcessManager/Views/DevicesView.xaml
2025-12-02 15:43:08 +08:00

21 lines
981 B
XML

<UserControl x:Class="ProcessManager.DevicesView"
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:prism="http://prismlibrary.com/"
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:winform="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
mc:Ignorable="d">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Loaded">
<i:InvokeCommandAction Command="{Binding WindowLoadedCommand}" />
</i:EventTrigger>
</i:Interaction.Triggers>
<Grid Name="MainGrid">
<WindowsFormsHost>
<winform:Panel x:Name="PanelHost"></winform:Panel>
</WindowsFormsHost>
</Grid>
</UserControl>