| 12345678910111213141516171819202122232425 | <UserControl x:Class="PunkHPX8_Themes.UserControls.Pump"             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:PunkHPX8_Themes.UserControls"             xmlns:converters="clr-namespace:PunkHPX8_Themes.Converters"             mc:Ignorable="d"              d:DesignHeight="450" d:DesignWidth="800" x:Name="mypump" Cursor="Hand">    <UserControl.Resources>        <converters:BoolToPath x:Key="boolToPath"/>    </UserControl.Resources>    <Grid>        <!--<Grid.ContextMenu >            <ContextMenu>                <RadioButton Content="Open"  Checked="RadioButton_Checked" Unchecked="RadioButton_Unchecked" x:Name="check1"/>                <RadioButton Content="Close" IsChecked="True" x:Name="check2"/>            </ContextMenu>        </Grid.ContextMenu>-->        <Image  Stretch="Uniform" Source="{Binding ElementName=mypump,Path=IsOpen,Converter={StaticResource boolToPath}}" x:Name="image1">        </Image>    </Grid></UserControl>
 |