Questions tagged [uwp-xaml]

This tag is for the XAML UI framework specific to Windows-Store-Apps on Windows 10, part of the Universal Windows Platform (UWP).

This tag is for the XAML UI framework (codename “Jupiter”) specific to Universal Windows Platform (UWP - see ). UWP XAML can also be used to build Windows Store Apps. UWP XAML supports .NET languages, C++/CX and C++/WinRT. The UWP XAML API is an evolution of Silverlight XAML API which targets cross-browser applications, which in turn is an evolution of WPF XAML which targets desktop applications. It has formerly been sometimes called WinRT XAML until the term was succeeded by "UWP" in Windows 10.

3049 questions
4
votes
2 answers

How to change the button's background when mouseover in UWP?

Now I only want to change the button's background to #f5f5f5 when mouseover it. WPF has a trigger function which can do it easily. Whereas I heard that UWP has no trigger any more,but with other function instead,like this question: Trigger element…
Melon NG
  • 2,568
  • 6
  • 27
  • 52
4
votes
1 answer

UWP - Display Progress Bar in ItemTemplate programmatically

I'm building a UWP app for Windows Mobile but I've hit a bit of a snag with progress bars. I got one working on the first page on app launch, that's fine, but now I'm trying to show one inside a GridView. I will have N number of GridView controls on…
Matt Brewerton
  • 866
  • 1
  • 6
  • 23
4
votes
1 answer

Resizing Checkboxes in Windows Universal Application

I have crowded Page in my project and I want to place too many Checkbox control in a single page, so I'm looking for a way to resize my checkboxes. When I change height and width of my checkbox, some part of its text disappear, In other word I need…
D.Ghiaseddin
  • 115
  • 9
4
votes
2 answers

Converting String Type To Windows.UI.Color In Windows Universal App

I'm trying to make a program to parse xml files with predefined format, and add some UI controls to my MainPage in Windows Universal Application. In some part, I need to specify the background color of my TextBlocks in related xml file, so I'm…
D.Ghiaseddin
  • 115
  • 9
4
votes
1 answer

Color Splash Screen - UWP app

Is it possible to set a color of our choice for SplashScreen or do I have to use an already defined color? For example, I want to use a green (MediumSpringGreen), but wanted to change the transparency of this color, making it slightly lighter.
Fernando Sousa
  • 241
  • 1
  • 5
  • 12
4
votes
1 answer

How to display a SearchBox in CommandBar

I would like to add a AutoSuggestBox in the CommandBar. However the following code does not make the AutoSuggestBox stretch. I tried setting the HorizontalContentAlignment="Stretch" and HorizontalAlignment="Stretch", but it has no impact. What am I…
resp78
  • 1,414
  • 16
  • 37
4
votes
1 answer

Xamarin forms relative layout position stacklayout at bottom

I would like to position a Stacklayout at the bottom on top of an image using a relative layout using Xamarin forms using xaml only. The xaml pretty much looks like this.
Mohammed Aamir K
  • 311
  • 5
  • 17
4
votes
0 answers

Template10 Memory Leak

I have noticed a memory leak when working with Template10. Easy to reproduce: 1. Create a new application based on the hamburger menu template project. Add no code. 2. Compile and run the app. 3. Switching from the main page to the detail page (and…
Dan
  • 83
  • 1
  • 1
  • 7
4
votes
1 answer

Template 10: Hamburger menu keyboard shortcuts

I am new in uwp app development. I made simple application based on Template 10 Hamburger template.I would like access hamburger menu item by keyboard shortcut. How is it possible? I try use AccessKey, but HamburgerButtonInfo don't have this…
Radim J.
  • 41
  • 2
4
votes
3 answers

How Can I Reuse an Icon in Resources in UWP? In WPF, I'd use x:Shared=false

I am trying to create a button Style that I can use for a "Lookup" button throughout my UWP app. However, the icon only appears on the first button on the screen. I tried this solution using templates, but it is not working for me. Thanks for the…
NSouth
  • 5,067
  • 7
  • 48
  • 83
4
votes
1 answer

StackOverflowException in UWP ComboBox

A UWP ComboBox is generating a StackOverflowException.
Vague
  • 2,198
  • 3
  • 18
  • 46
4
votes
1 answer

Override theme resource in the scope of a Page

I want to override a theme resource, specifically the SystemAccentColor, in the scope of a specific page. I have successfully done it in application wide scope. But I can't do it for a specific page. XAML in App.xaml (this works fine) …
Corcus
  • 1,070
  • 7
  • 25
4
votes
1 answer

UWP Value cannot be null. Parameter name: path1

I am creating a blank UWP using Visual Studio 2015 I am getting the following errors every time i try to build Error CS1061 'MainPage' does not contain a definition for 'InitializeComponent' and no extension method 'InitializeComponent'…
Ibra Him
  • 155
  • 1
  • 2
  • 10
4
votes
3 answers

Is it possible to bind to an indexed property in xaml using the same property path syntax as a standard property?

In XAML (specifically on Universal Windows Platform) I can data bind to an indexed property using the property path notation for indexers. e.g. Given a data source of type Dictionary I can bind to an indexed property as…
stuart
  • 133
  • 5
4
votes
1 answer

Split view control, darken content when pane is open

On the application, i have a Split View control with a pane and a content. I would like to know if it is possible to darken the content when the pane is open as if i was applying a 75% opacity mask on splitview.Content. Thanks in advance for your…
ArthurCPPCLI
  • 1,072
  • 7
  • 18