Questions tagged [windows-template-studio]
49 questions
0
votes
1 answer
Navigation in UWP app
I've written a UWP app using VS2017 and Windows Template Studio. I've created multiple pages by using the Pivot Page Navigation Template.
Here is the basic code:
public sealed partial class MainPage : Page, INotifyPropertyChanged
{
public…

Trey Balut
- 1,355
- 3
- 19
- 39
0
votes
1 answer
How to handle uwp app Uri that using Windows Template Studio
According to Microsoft Docs you can handle app uri with this code
protected override void OnActivated(IActivatedEventArgs args)
{
if (args.Kind == ActivationKind.Protocol)
{
ProtocolActivatedEventArgs eventArgs = args as…

ToonWK
- 47
- 1
- 8
-1
votes
2 answers
Databinding during Navigation in UWP
I'm using Windows Template Studio to create a simple UWP app. I'm using the built-in MVVM template for Multiple Pages.
I have 2 Pages on the app. Both the pages contain the few textboxes where the user can enter some values. Data binding is working…

gaurav1891
- 3
- 1
-2
votes
1 answer
I'm trying to go to another page when clicking a button. How could i do this (WinUI 3)
I'm trying to go to another page when clicking a button. How could i do this.
I tried using a NavigationViewItem but it didn't work.

Marcelsky
- 55
- 1
- 6