UAP (Uniform Access Principle) - is a principle of OOP, that states "All services offered by a module should be available through a uniform notation, which does not betray whether they are implemented through storage or through computation"
Questions tagged [uap]
20 questions
5
votes
2 answers
Why it's impossible to override `var` with `def` in Scala?
While I understand why a var cannot override a val in subclass and vice versa, I am unable to understand why does Scala not allow a def in subclass to override a var in superclass
class Car {
var age = 32
}
class SedanCar extends Car {
override…

JavaMan
- 351
- 1
- 3
- 13
4
votes
1 answer
changing language of UWP app is temperamental
I have the code below to change the language of my app, but it is proving to be unreliable. My app is made up of a MainPage and a bunch of UserControls, loaded on when the page is created. When I change the language via a button press on the page it…

Slicc
- 3,217
- 7
- 35
- 70
2
votes
1 answer
Geolocation not working in Electron for windows store application (UAP) (Cordova-Electron app)
Need to get this Cordova plugin working for Electron (or Browser) platforms:
cordova-plugin-geolocation.
The iOS, & Android implementation work great, but windows is deprecated because it uses IE11. So we are porting our windows implementation to…

Allen
- 21
- 3
2
votes
1 answer
Debugging session ends too quickly when explorer used as a startup program - Windows 10 / SOLIDWORKS PDM Professional
I'm trying to debug a class library (PDM Add-in) using Explorer.exe for SOLIDWORKS PDM Professional. I'm on Windows 10. Explorer starts for a second and then something happens that shutdown the debugger.
This what I see in my debug…

Amen Jlili
- 1,884
- 4
- 28
- 51
2
votes
2 answers
Error Loading Visual Studio Universal Template
I have VS Community 2015 Update three installed. I am trying to learn UWP but I keep getting the following error when trying to launch
One thing I noticed is that all the videos and screenshots I've seen online say "Universal" and mine says "UAP"…

JAL
- 101
- 7
2
votes
0 answers
How to detect a UWP (universal windows platform) app is running as a published application or testing application at run-time?
I would like to make part my UWP application logic a bit different when the application run as a published store app instead of a engineering edition.
So the question is how can I detect at the run-time whether a UWP application is running as a…

Hongkun Wang
- 717
- 8
- 22
1
vote
1 answer
Where does OutputDebugString go on Windows Universal Apps ? And how to capture messages from OutputDebugString?
Using OutputDebugString is a common debugging technique for user mode debugging.
In UWP/UAP/Metro app developement on Windows 10, this debugging function is still available.
However, I would like to observe OutputDebugString messages without…

LostAPI
- 11
- 2
1
vote
0 answers
How to allow STS pop up on Cordova inAppbrowser
Some network asks STS username and Password (Plz check attached image) while accessing particular authentication page. While using Cordova inAppBrowser in an Cordova Application it stuck on the same place where the STS pop up arrives.
Platform : IOS…

Snehasis Mohapatra
- 83
- 2
- 7
1
vote
0 answers
add drop down menu to a burger menu C# UAP
I want to add a drop down menu to this burger menu
so first you open the burger menu and when you click on settings for example that it will open an other drop down menu with items in it.
Xaml and C#:

Max Clasener
- 49
- 2
- 8
1
vote
2 answers
Visual Studio 2015 Enterprise Update 3 missing UWP and UAP projects
I installed Visual Studio 2015 Enterprise Update 3 with Windows 10 SDK.
All SDK are installed fine but I can't create UWP or UAP project because Visual Studio has not these templates.
I reinstalled and restored visuals studio many times. I…

user1658602
- 234
- 2
- 13
1
vote
1 answer
How to animate live tiles using notification extensions?
I want to animate lives tiles in UAP applications. But I am getting this exception:
Cannot implicitly convert type 'NotificationsExtensions.Tiles.TileImageSource' to 'string'.
I am using this code:
TileBindingContentAdaptive…

subminer
- 37
- 1
- 8
1
vote
1 answer
How to navigate from a usercontrol to a page
I have a usercontrol.When I click on a button in this usercontrol,I need to navigate to another xaml page.How can I do it?
user4121182
0
votes
0 answers
Are there any changes in the WebView related APIs in UWP or UAP Windows app?
I am having a Windows 8.1 supported app, but now it is updated to the UWP/UAP (i.e. Windows 10) app.
After updating the custom URI scheme is not working, On a button click on the web page, we were using "navto://" custom URI scheme and handling were…

Gopal Devra
- 564
- 2
- 5
- 24
0
votes
1 answer
Determine whether the user opend the app with double click file or context menu open with
is there a way to determine whether the user opend the uwp app with a double click on the file or whether the user used "open with" (for example right click on the file open with; or Photos app -> open with).
In both scenarios the app will be…

Briefkasten
- 1,964
- 2
- 25
- 53
0
votes
1 answer
Netcore library compatibility with universal windows app and others
I've developed a net core library app and posted on nuget for personal use.
Then later I created a universal windows app and tried to install this net core library via nuget then I get the following error.
Package restore failed. Rolling back…

Developer
- 924
- 3
- 14
- 30