Questions tagged [windows-template-studio]
49 questions
0
votes
1 answer
How to modify navigation menu in main.cs while using WindowsTemplateStudio?
I'm using WindowsTemplateStudio, For some reason, I have to modify navigation menu in MainPage.xaml.cs, like remove or add some items.
How to do? Thx.

Vincent
- 3,124
- 3
- 21
- 40
0
votes
1 answer
How to hide NavigationView's PaneToggleButton in uwp
I'm using Windows template studio, in ShellPage.xaml, I can set NavigationView's PanToggleButton visible or not by using
IsPaneToggleButtonVisible=true/false;
And by default, my app will navigate to MainPage() after App started. When I navigate to…

Vincent
- 3,124
- 3
- 21
- 40
0
votes
2 answers
How to add extended splash to windows template studio?
I'm using windows template studio to create my app, and want to add a extended splash screen refered Display a splash screen for more time.
For the code write in App.xaml.cs in windows template studio, they use ActivationService. I don't know how…

Vincent
- 3,124
- 3
- 21
- 40
0
votes
1 answer
Windows UI Library - how to invoke NavigationView.MenuItems added dynamically
I'm using windows ui library and windows template studio. Currently, the winui:NavigationView.MenuItems are added in xaml.

Vincent
- 3,124
- 3
- 21
- 40
0
votes
1 answer
How do I get rid of CS4014 warnings for *.g.cs files?
I've been getting the CS4014 warning in Visual Studio developing UWP apps, and can't figure out what to do with them. I know there's a way to suppress them in VS, but I don't want to suppress all CS4014 warnings altogether.
Warning CS4014 Because…

Carlo Mendoza
- 765
- 6
- 24
0
votes
1 answer
Windows Template Studio - Customizing the Navigation Pane
I am trying to customize the style of my Navigation Pane but I have found difficult to access the UI elements related to it. Basically, I would want to have the top part of the navigation pane as a certain color, which would be a continuation of our…

Olivier Samson
- 609
- 4
- 13
0
votes
1 answer
How can I have a shared ProgressCircle control accessible to all views?
I'm an Android developer trying to learning UWP development, and attempting to use the Prism Library and Windows Template Studio to help me with the boilerplate functionality.
My goal is to have a ProgressCircle control that is accessible by all…

szaske
- 1,887
- 22
- 32
0
votes
1 answer
Windows Template Studio MVVMLight accessing ViewModel from Details page
I'm using Windows Template Studio V3.0 the create a UWP App using MVVMLight that implements a Master/Detail page. I'm sure I'm going to kick myself but I can't work out how to access the ViewModel from the Details page. I need to access a property…

dplock
- 11
- 3
0
votes
2 answers
Fluent AcrylicBrush does not switch between Light, Dark, theme etc. UWP
Defined Light theme ( ), Dark, ( ) in App.xaml. Per this post, Changing UWP project's Target Version from 1803 to 1809 disables NavigationView's Acrylic texture - why?, I added the…

Carlo Mendoza
- 765
- 6
- 24
0
votes
1 answer
Windows Template Studio MVVM Light Navigation To Page--Not everything loads the first time on UWP app
I'm probably missing something fundamental, but don't know what.
I'm in the process of converting a Tempalate10 UWP app to Windows Template Studio.
I've got most of my code moved over to the new project, but what strikes me is that when a page is…

Carlo Mendoza
- 765
- 6
- 24
0
votes
1 answer
On NavigationView page change, data binding is lost
Changing page through the NavigationView control causes some data bindings to fail/be lost.
data model:
public class Flashpoint
{
private string name;
private string description;
private string image;
public string Name
{
…

Tom Chapman
- 433
- 7
- 15
0
votes
1 answer
Get JSON from url, save to file, and finally CreateActivationService
Using the Template Studio extension for Visual Studio, I generated a project solution base and am now attempting to interject the app load process with a HTTP request before proceeding the render the page view.
App.xaml.cs
using System;
using…

Tom Chapman
- 433
- 7
- 15
0
votes
2 answers
Windows Template Studio - UWP- Navigation to Uri
I have a UWP application and have used the Windows Template Studio. This uses a NavigationService which implements Frame Navigation. My UI includes a Pivot control and each pivot item includes a page. Is there a way to navigate to a specific Pivot…

RamyaN
- 162
- 1
- 10
0
votes
1 answer
Can we side load our template in Windows Template Studio of VS2017
I am using Windows Template Studio in my VS2017 Community Edition. I can add different component as page. I am willing to know is there any way to side load our own custom component or page locally (offline). So the purpose is need to show my custom…

Ramanan
- 159
- 1
- 11
0
votes
1 answer
Modifying SettingsPage.xaml in vs2017 Windows Template Studio c#
I am using Windows Template Studio to create an application with a modifiable theme. Is it possible to add new contents on the settings page? There are 3 themes available currently: light, dark and default. I would like to add another one for…

Gibs
- 774
- 9
- 26