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
5
votes
2 answers

UWP , What skill Do I need to make the 2 animation?

Here is my next project for 2 sensor monitor. I designed a simple UI to display sensor values. I need advice about direction of development. Especially Animation. Here is my designed UI. Left is normal status. Both Sensor value is good. Right is…
Kazuhiko Nakayama
  • 801
  • 1
  • 8
  • 24
5
votes
1 answer

scrollviewer zoom only one element

I have to zoom an image in uwp application, which works fine, but the design requires to have another image (that works as a button) in front of it and I dont want that element to be zoomed as well. It has to be only the image inside the canvas tag,…
marsalal1014
  • 1,897
  • 3
  • 17
  • 24
5
votes
2 answers

UWP XAML resizing issue with TextBox in StackPanel in ScrollViewer with horizontal scroll

I'm running into some strange resizing behavior when putting a TextBox in a StackPanel inside of a ScrollViewer with horizontal scroll. The items in the StackPanel are supposed to stretch to the full width of the grid column. The grid column should…
Andrew Stevens
  • 635
  • 5
  • 13
5
votes
2 answers

Changing value of a ThemeResource at runtime does not reflect in other views

I am using custom themedictionary in my UWP app. I change the value of a ThemeResource at runtime. This change is reflected only in the mainview and not the other views. Even if i create a new view after changing the resource's value the new view…
Razor
  • 669
  • 1
  • 10
  • 28
5
votes
1 answer

Behaviors SDK Not available in Vs2017

I've developed a UWP project with Behaviors SDK in VS2015 (Windows 10). Then I've installed VS2017 and tried to run the app without any changes. Unfortunately I'm getting below error for Behaviors SDK. Are there any solution or workaround for this…
eakgul
  • 3,658
  • 21
  • 33
5
votes
1 answer

How to create a RichEditBox with support for Inking Like OneNote?

I want to create a RichEditBox with support for Inking Like OneNote. It should have features from both, like Text Formating and Ink editing. Note: I have requested UWPCommunityToolkit to create a new control for this. If you would like to have that,…
Vijay Nirmal
  • 5,239
  • 4
  • 26
  • 59
5
votes
1 answer

How do you change the Style of the PivotHeaderItem(s) within a Pivot

I have looked at Apply PivotItemHeader style to PivotItem in UWP but I haven't been able to apply the suggestions to my code. I'm trying to change the Style of the PivotHeaderItem(s) within a Pivot based on whether or not the device is Desktop or…
StephenR
  • 95
  • 6
5
votes
0 answers

How to get ReorderThemeTransition in ListView?

I have an ObservableCollection where I move the items by oc.Move(oldIndex, newIndex); This ObservableCollection is used as ItemsSource for a ListView. Now I want the ReorderThemeTransition or RepositionThemeTransition, but unfortunately there…
Matt
  • 4,612
  • 1
  • 24
  • 44
5
votes
1 answer

Conditional rendering of the data template in XAML

I have a list of text blocks, that may include urls inside, smth like: Build failed, see more here: http://... Build succeeded App http://myapp/ cannot be started, see more here: http://... I need to display this (endless) list in a UWP app.…
snooopcatt
  • 53
  • 4
5
votes
3 answers

From code: Change ScrollViewer's scrollbars'-style to touch

Touch: Mouse: How do I tell the ScrollViewer to start using the touch-style scrollbar from code? Here's an example:
ispiro
  • 26,556
  • 38
  • 136
  • 291
5
votes
1 answer

How to add weight to custom FontFamily?

I have multiple .ttf file from the same family, like: MyFont.ttf MyFont_Bold.ttf MyFont_Light.ttf MyFont_Medium.ttf If I want to use each weight, I should define theme as separate FontFamily like this:
TheSETJ
  • 518
  • 9
  • 25
5
votes
1 answer

Add new device to xaml layout designer Visual Studio 2015 UWP

I am using Visual Studio 2015, creating my first Windows UWP app. I am trying to create the layout and as such, I have added a blank xaml page to my project. When I double click, it does take me to the designer. The question is, there are preset…
Michael Bedford
  • 1,742
  • 20
  • 48
5
votes
2 answers

Multi binding in UWP

I want to display a textblock with latitude and longditude. In my model, the lat and lng are two variables, so I need to combine them, preferably with stringformat as this answer suggests. Unfortunately it doesn't seem like multi binding is…
Kristoffer Berge
  • 1,046
  • 1
  • 20
  • 36
5
votes
2 answers

Windows UI (UWP or 8.1) in F# interactive

By referencing the default WPF DLLs, it's pretty easy to do anything you could do using code-only WPF: #r "PresentationCore.dll" #r "PresentationFramework.dll" // ...other DLLs... #r "WindowsBase.dll" let window = System.Windows.Window() let panel…
Overlord Zurg
  • 3,430
  • 2
  • 22
  • 27
5
votes
2 answers

XAML UWA Scrollbar not showing

In the following code the Scrollbar control does not display but the Slider control does. If I change the Scrollbar control to a Slider control simply by changing Scrollbar to Slider it works perfectly, however I would prefer the look of the…
fikeus
  • 61
  • 5