Questions tagged [win-universal-app]

Windows Universal apps target multiple types of devices via a single codebase. Please specify with other tags if you refer to Windows 8.1 or Windows 10.

You can build an app for Windows and Windows Phone/Mobile at the same time, and share code, user controls, styles, strings and other assets between them. This reduces the expense associated with building and maintaining an app for each type of device.

If you already have a desktop app, you can easily add support for a mobile app. Similarly, if you start by creating a mobile app, you can easily add support for a desktop app.

Please note that since the release of Windows 10, the universal apps for that platform are called Universal Windows Platform (UWP) apps. Therefore please use suitable tags additonally:

For some more help regarding:

Use this tag for any UWP questions - whether building Windows Store Apps, UWP APIs in Win32 applications.

5610 questions
2
votes
1 answer

UWP: Add InlineUIContainer to Hyperlink fails

In my UWP (Universal Windows Platform) app I need to create a Hyperlink element with an image in it: var hyperlink = new Hyperlink(); var container = new InlineUIContainer { Child = new Image() { ... } }; hyperlink.Inlines.Add(container); This…
Rico Suter
  • 11,548
  • 6
  • 67
  • 93
2
votes
0 answers

Prevent a ScrollViewer's scrolling conditionally

Is there any way to not only be notified of a ScrollViewer's scroll, but to be able to prevent it. Something like a ScrollChanging event so I can set e.Cancel to true? (I don't want to disable scrolling, nor do I want to implement it myself because…
ispiro
  • 26,556
  • 38
  • 136
  • 291
2
votes
1 answer

Allow clicks and click-through's

I have a Grid over a Button (They are both directly on another Grid, but the Grid is "above"). I need to subscribe to certain events in the Grid, but still be able to click on the Button. I set the Background of the Grid to Transparent, to get it to…
ispiro
  • 26,556
  • 38
  • 136
  • 291
2
votes
1 answer

Customize DatePicker Windows Phone 8.1 universal

Is it possible to customize this part of the DatePicker?
frenk91
  • 919
  • 1
  • 15
  • 30
2
votes
1 answer

what is equivalent of listview adapter of android in windows phone 8.1(Xaml)

I know that we can directly bind properties in Xaml. But My requirement is bit different. I want full control on binding data. So I am looking for adapter type approach. I want to display some elements based on number of lines in textblock of that…
2
votes
1 answer

Doing localization in visualstatemanager by changing x:uid?

I am adding localization to my UWP app by adding x:uid tags to all of my elements and using the multilingual toolkit. However I've run into an issue where in one case I change the text itself in the narrow view using the visualstatemanager. How can…
Jason
  • 245
  • 3
  • 12
2
votes
4 answers

How can I close Cortana's Confirmation Screen after issuing a voice command?

I think I've successfully figured out how to utilize cortana, send commands, and work asynchronously between an app and a service. But I can't figure out if it's possible to manually close Cortana's Confirmation Screen. I do my voice command, send…
CREW
  • 926
  • 3
  • 17
  • 32
2
votes
1 answer

'Trigger' property is null when trying to register background task using a TimeTrigger

I've followed the Microsoft guidelines for creating and registering a background task: https://msdn.microsoft.com/en-us/library/windows/apps/mt299100.aspx I have my main project, which registers the background task with a trigger etc, and another…
jb637
  • 155
  • 1
  • 10
2
votes
1 answer

PushNotificationType.TileFlyout addition in UWP. What is it?

I am building a sample app to test the new push notification features in UWP. I have come accross the new addition in the PushNotificationType enum. Namely PushNotificationType.TileFlyout Does it suggest that there is a fifth kind of push…
Corcus
  • 1,070
  • 7
  • 25
2
votes
2 answers

Increase font size when screen is smaller

I have this in my XAML
KTOV
  • 559
  • 3
  • 14
  • 39
2
votes
1 answer

ReSharper want to still import Windows.UI.Xaml.Controls

I created new project in Visual Studio - Universal Windows. Why ReSharper still want to import Windows.UI.Xaml.Controls ? Do you have any idea ? It's burdensome. Thanks
piotrbalut
  • 857
  • 1
  • 9
  • 21
2
votes
1 answer

How do I real time communicate a Universal Windows App with a older .Net 4.5 app in the same solution. IPC?

I have been struggling with this for over a month, but am slowly learning. Here is what I have: C# Solution With 3 Projects -Universal Windows Platform App (Cortana Voice Support) ::Above just shows a floating PNG image and is Cortana…
CREW
  • 926
  • 3
  • 17
  • 32
2
votes
0 answers

Communication between Windows Universal App and Desktop application (Win 10)

Is there any way to realize communication between a Windows Universal App and a standard Desktop application running at the same computer? I read that UAs don't support IPC. Instead they use those so called background agents. But is it possible to…
Peter
  • 369
  • 2
  • 5
  • 18
2
votes
2 answers

how to install framework SDK(.NETCore, version=v5)

I recently installed Visual Studio 2015 Community for universal app development, but when ever I create a new project and select the universal app under windows the error pops up saying: "One or more projects requires a framework SDK(.NETCore…
2
votes
1 answer

Style MediaElement in Windows Universal

I am working on a windows universal app called ProPlayer and you may see this preview app on Windows Store . Now I am working on a new version and I used MediaElement instead of Microsoft player framework in this new version . I am trying to modify…
Ali NGame
  • 449
  • 3
  • 14
1 2 3
99
100