I'm currently using T10 for developing a simple app, by using Blank template. Then, I saw from Hamburger template that you apply Custom.xaml theme into App.xaml by adding Application.Resource
into App.xaml
like this
<common:BootStrapper x:Class="T10Hamburger.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:common="using:Template10.Common">
<Application.Resources>
<ResourceDictionary Source="Styles\Custom.xaml" />
</Application.Resources>
</common:BootStrapper>
I did the same thing into my project, but I'm getting XAML exception.
Here is the message from the exception :
"Error HRESULT E_FAIL has been returned from a call to a COM component."
Did I miss something?
nb : A little note, when I tried to manually type the Application.Resource
into App.xaml, the Intellisense didn't catch the Application
part, but later show when I tried to complete it with Resource