I can not adequately add a link to the WPF user element library created inside the WinForm project; the link is identified with an exclamation mark, without any obvious errors, and the elementHost empty. Ps. Once I added it and worked fine (I made the library myself).
Additionally
The variable 'userControl11' is either not declared or has not been assigned a value. 
Dll itself
Code example
<UserControl x:Class="ASAMWPFElements.UserControl1" 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:ASAMWPFElements" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="47*"/> <RowDefinition Height="253*"/> </Grid.RowDefinitions> <Button x:Name="button1" Content="Button" HorizontalAlignment="Left" Margin="33,123,0,0" Grid.Row="1" VerticalAlignment="Top" Width="75"/> <ComboBox x:Name="comboBox" HorizontalAlignment="Left" Margin="78,20,0,0" VerticalAlignment="Top" Width="120"/> <Button x:Name="button" Content="Button" HorizontalAlignment="Left" Height="62" Margin="10,23,0,0" Grid.Row="1" VerticalAlignment="Top" Width="142"/> </Grid> </UserControl> 