blob: 98d9dc13d434c6ed734080965f685eb3e640f462 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<UserControl x:Class="Tango.FSE.Common.Controls.ConnectedMachineIcon"
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:integration="clr-namespace:Tango.Integration.ExternalBridge;assembly=Tango.Integration"
xmlns:emulations="clr-namespace:Tango.Emulations.ExternalBridge;assembly=Tango.Emulations"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Tango.FSE.Common.Controls"
mc:Ignorable="d"
d:DesignHeight="50" d:DesignWidth="50" Height="50">
<Grid>
<local:MachineConnectionIcon ExternalBridgeClient="{Binding}" />
</Grid>
</UserControl>
|