Error XFC0000: Cannot resolve type "sharpnado:MaterialFrame"
If you end up with this error, it means you forgot to call the Sharpnado.MaterialFrame.Initializer.Initialize() in your App.xaml.cs. Have a look here: https://github.com/roubachof/Sharpnado.MaterialFrame#initialization
EDIT: If you are using a dependency injection framework like Prism just insert a function anywhere in the module that calls the initialize method.
private static void DummyInitializer() => Sharpnado.MaterialFrame.Initializer.Initialize(true, false);
This happens because in the order of compilation of dependencies in a Prism project the Initialize function is called last and consequently the XFC0000 error is generated.
I'm getting this issue, but neither of the above fixes are working.