21 lines
987 B
XML
21 lines
987 B
XML
<UserControl x:Class="ProcessManager.Views.DeviceOther"
|
|
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>
|