15 lines
494 B
XML
15 lines
494 B
XML
<Window
|
|
x:Class="WolfOfWallStreet.Views.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:prism="http://prismlibrary.com/"
|
|
Title="{Binding Title}"
|
|
Width="650"
|
|
Height="900"
|
|
prism:ViewModelLocator.AutoWireViewModel="True"
|
|
FontFamily="{StaticResource Shabnam}">
|
|
<Grid>
|
|
<ContentControl prism:RegionManager.RegionName="ContentRegion" />
|
|
</Grid>
|
|
</Window>
|