﻿<Window x:Class="NestedLibraryUsageInXAML.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:anotherClassLibrary="clr-namespace:AnotherClassLibrary;assembly=AnotherClassLibrary"
        Title="MainWindow" Height="350" Width="525" Loaded="MainWindowLoaded">
    <Grid>
        <anotherClassLibrary:AnotherDummyUserControl />
    </Grid>
</Window>
