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

Create a class dynamically using System.Reflection.Emit in UWP

Create a class dynamically using System.Reflection.Emit in UWP. in UWP AppDomain.CurrentDomain.DefineDynamicAssembly is missing. Please suggest any solution.
SINU S
  • 59
  • 3
5
votes
1 answer

Can't use Syncfusion assembly in project

I tried to use this code, to include Syncfusion Charts to the project xmlns:charting="clr-namespace:Syncfusion.UI.Xaml.Charts;assembly=Syncfusion.SfChart.UWP" but I get an error: Undefined type "SfChart" in XML namespace…
SYL
  • 337
  • 4
  • 16
5
votes
2 answers

How do I write a custom picker control in UWP?

I have been fine-combing the web for any guidance, discussions or experience on this and I think I can safely say there’s nothing to be found. We are developing a set of controls for UWP which we plan to open source and make available for free. One…
Daniel Rosenberg
  • 616
  • 5
  • 14
5
votes
2 answers

No installed components were detected. Cannot resolve TargetName HighContrastBorder - UWP Windows 10

My CommandBarhas its IsOpen property set to true in XAML and therefore the is text for each button is visible as I want the descriptions to remain visible. When I click on ellipses button, it hides the text and the second time I click on it, I get…
Thierry
  • 6,142
  • 13
  • 66
  • 117
5
votes
1 answer

How to invoke javascript functions in a WebView in Universal Windows App

I am new in Universal app development. Can any one help me into following code, I have load one website using web view control in universal app. I want to read some control value from same website. My label control id is 'lblDestination' on…
Mahesh
  • 157
  • 2
  • 8
4
votes
1 answer

WinUI 3 How to set Minimum Size of a Window

So in UWP, we can use ApplicationView.GetForCurrentView().SetPreferredMinSize(new Size(500, 500)); but ApplicationView.GetForCurrentView(); returns null in WinUI 3. Is there a way to set the minimum size for a window
4
votes
1 answer

UWP PDFTron pdf viewer next previous button modification

In PDFTron there is a next and previous buttons appear in the document viewer. (UWP app). I have a requirement to place these buttons to the bottom of the screen and also scale it a bit. Does anyone have any idea how to do that? (It looks like the…
SurenSaluka
  • 1,534
  • 3
  • 18
  • 36
4
votes
0 answers

Override default scrollbar behaviour in Windows 10 UWP

I am using the Uno platform and trying to override the default UWP scrollbar and end up with something like this (a static, always visible scrollbar with increased width and different color): I've tried playing around with the ScrollBar's Style…
Tomy
  • 439
  • 1
  • 5
  • 13
4
votes
1 answer

How to get Windows 10 accent color?

I'm looking for a way to get the color that windows 10 chooses automatically depending on the background image as shown below. I tried searching, and found var color = (Color)this.Resources["SystemAccentColor"]; and var color =…
master_ruko
  • 629
  • 1
  • 4
  • 22
4
votes
3 answers

Is there any better way to Launch UWP apps from Console application

I tried to launch the UWP application from c# console application. It tried with below code which uses APPID Process.Start(@"C:\Program Files (x86)\Windows Kits\10\App Certification Kit\microsoft.windows.softwarelogo.appxlauncher.exe", "1a75- 6f75…
Subrak
  • 139
  • 11
4
votes
1 answer

Xamarin Form - How To store an image in PDF or JPEG Format in UWP

hello friends i am developing the DMS application in which user can scan the document or images through scanner and upload on server. For scanning purpose i am refered this link it works perfectly..:) Now problem is…
user11362349
4
votes
1 answer

UWP Animation resets to From state

I have an animation in UWP app which was working (Production Windows Store app) as intended until Windows Update 1809. Something was changed and now the animation resets to From value right after it finished. Example code: Animation (rotation): …
Mike Keskinov
  • 11,614
  • 6
  • 59
  • 87
4
votes
2 answers

UWP AutoSuggestBox - Up/Down arrow key fires SuggestionChosen

When the suggestion list is open, the up/down arrow keys automatically fires the SuggestionChosen event. I am wondering if there is a way to intercept this key press? I have tried to use the KeyDown and KeyUp events to catch these key presses but…
hendch
  • 41
  • 3
4
votes
2 answers

UWP Using Acrylic in Navigation View

Im looking into the Acrylic options for UWP and have bumped into a strange issue. Essentially, Im trying to get the Navigation view to use a custom Acrylic Brush. However, the main window background is more transparent than the Navigationview. I…
Batteredburrito
  • 579
  • 1
  • 5
  • 34
4
votes
0 answers

Uwp TextBox stops receiving input from touch keyboard

We have a Uwp app with a lot of text boxes. Recently we noticed that after typing a few characters on a touch device, the textbox seems to hang and stop updating the text. If you touch the text box again or enter a few more characters, it will send…
J Nelson
  • 138
  • 1
  • 1
  • 12