How to navigate to a new page using WinUI3 with C++ desktop app?

1.3k Views Asked by At

Firstly I create a project using template "Blank App, Packaged(WinUI in Desktop)" in Visual Studio.

Then I changed code in MainWindow.xaml to a simple Frame:

<Frame x:Name="rootFrame"></Frame>

And then I add a BlankPage and try to navigate to the BlankPage like this:

rootFrame().Navigate(xaml_typename<BlankPage>());

And then visual studio give me error:

winrt\Windows.UI.Xaml.Interop.h(643,29): error C2338: T must be WinRT type.

I don't know how to do...

1

There are 1 best solutions below

1
On BEST ANSWER

Finally I found what's wrong. It's relate to namespace, when I create a new Page, there are three namespace:

winrt::PROJECTNAME::implementation::BlankPage
winrt::PROJECTNAME::factory_implementation::BlankPage
PROJECTNAME::BlankPage

I should use PROJECTNAME::BlankPage defined in BlankPage.idl