ILRepack.IntegrationTests/Scenarios/AnotherClassLibrary/AnotherDummyUserControl.xaml (14 lines of code) (raw):
<UserControl x:Class="AnotherClassLibrary.AnotherDummyUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:classLibrary="clr-namespace:ClassLibrary;assembly=ClassLibrary"
Width="300" Height="100" Background="Yellow">
<UserControl.Resources>
<classLibrary:DummyConverter x:Key="DummyConverter"/>
</UserControl.Resources>
<StackPanel>
<TextBlock>Below we have the dummy user control from another library</TextBlock>
<classLibrary:DummyUserControl />
<TextBlock Text="{Binding Converter={StaticResource DummyConverter}}" />
</StackPanel>
</UserControl>