I've tried searching for this without joy so apologies if I missed it somewhere.
I have 2 projects; ViewModels and Views. Views references ViewModels and serves as the composition root.
I want App.xaml.cs to instantiate MainWindow.xaml in the views project and bind MainWindowViewModel to its' DataContext. So far, so uneventful. The problem happens when MainWindow.xaml uses a static resource from App.xaml.
In App.xaml.cs I have:
public partial class App : Application
{
private StandardKernel container;
protected override void OnStartup(StartupEventArgs e)
{
this.container = new StandardKernel();
this.MainWindow = container.Get<MainWindow>();
}
}
In App.xaml I have:
<Application x:Class="TestApp.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TestApp">
<Application.Resources>
<Style x:Key="ButtonStyle" TargetType="Button">
<Setter Property="Background" Value="Blue"/>
</Style>
</Application.Resources>
In MainWindow.xaml I have:
<Window x:Class="TestApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:TestApp"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Button Style="{StaticResource ButtonStyle}">Test</Button>
When I run the application I get the following error:
Exception: Cannot find resource named 'ButtonStyle'. Resource names are case sensitive.
I'm assuming that because I am manually setting MainWindow in the OnStartup() method the MainWindow class doesn't have its' parent set to App? As a result, the runtime is unable to resolve "{StaticResource ButtonStyle}" on the button.
How do I use an IoC container to construct a View (MainWindow.xaml) that binds to a static resource in App.xaml?