win-universal-app

No phone emulator showing in device list in visual studio 2015 RTM

ぐ巨炮叔叔 提交于 2019-12-04 00:18:32
问题 So I would like to test some apps on windows phone 10, but there is no emulator to choose from in the device drop down. I clicked on the 'Download new emulators...' option in the dropdown, downloaded the package, and installed a 3.5GB windows phone 10 emulator but I'm not seeing where it went. I've restarted windows and opened up the test project in VS2015 CE. Still no emulator available. Anyone else have this problem? Any ideas? 回答1: You need to switch the platform in your Visual Studio from

Comparison Visual studio 2015 and Blend for Visual Studio [closed]

核能气质少年 提交于 2019-12-03 23:43:00
Closed . This question is opinion-based. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it can be answered with facts and citations by editing this post . Closed 3 years ago . I am a newbie about Windows store apps development. What is the main function and benefits of Blend for Visual Studio. There is already a XAML designer and all tools embedded in Visual Studio. Why there is a need for Blend for Visual Studio? What is the main advantage of Blend for Visual Studio? Because in many videos I watched, People prefer to use Blend for

Is Universal Windows Platform the replacement of WinRT of Windows 8 and Windows Phone apps?

*爱你&永不变心* 提交于 2019-12-03 23:26:20
Is Universal Windows Platform the replacement of WinRT of Windows 8 and Windows Phone apps? I mean, there was a WinRT platform to develop metro apps exclusively for Windows 8. Now, that is replaced by UWP, isn't it? That is correct, UWP is the new platform for ALL Windows devices going forward (Win 10+). However WinRT is not replaced by UWP but is instead an extension on top of it, making UWP a much broader set of APIs that can be used across even more devices. As Microsoft themselves state: With this evolution, apps that target the UWP can call not only the WinRT APIs that are common to all

“Symbols for the module MyLibrary.dll were not loaded”?

微笑、不失礼 提交于 2019-12-03 22:16:46
I'm trying to learn Windows Phone dev by making a basic app that provides information about Pokemon. To do this, I've created a portable class library (PokeLib.dll) so it's compatible with universal apps. I've tested this via a project in the same solution ("Test"), and it works fine. You can take a look at the code for these on my Github , but as far as I can tell, it's all good. These two projects are in the one solution. For the Windows Phone app's solution, I added PokeLib as an "existing project", added the references, and written some a couple lines of code to make sure I could call it

Disabling or removing the close button from uwp app

。_饼干妹妹 提交于 2019-12-03 21:50:47
Universal app does not allow to remove or disable the close button it seems. We can hide it by going full screen. But when moving cursor over it, brings title bar back. Is there any way to remove the close button? Reason : I am working on screen time. After allowed time gets over, I want to block the screen. I should remove close button so that user cant get over my app. Edit : Removing close button wont help completely. It is a part of work. I am just asking how to remove it. With current released API, we are able to customize the color of these three buttons in title bar. But there is no

Windows Phone 8 ApplicationSettings - Get settings in Universal app

牧云@^-^@ 提交于 2019-12-03 20:59:32
I'm upgrading windows phone 8 application. I created Universal app (Windows.Phone 8.1). The settings in old WP8.0 application are saved in following way: IsolatedStorageSettings.ApplicationSettings.Add("MY_SETTINGS", value); Question: How can i get this settings when app is upgraded to WP8.1 (Universal app). I try the following: var localSettings = Windows.Storage.ApplicationData.Current.LocalSettings; var isContains1 = localSettings.Values.ContainsKey("MY_SETTINGS"); var roamingSettings = Windows.Storage.ApplicationData.Current.RoamingSettings; var isContains2 = roamingSettings.Values

UWP Deployment Error after deploying to store - Windows 10

假如想象 提交于 2019-12-03 17:07:34
问题 Since deploying my UWP app for windows 10 in the store (beta & private), I can no longer deploy it to my phone (ARM), Tablet Simulator (x86) and my local machine (Surface Pro 3) for testing. I've rebooted both my phone and my SP3 but I'm still getting the same error: Severity Code Description Project File Line Suppression State Error Error : DEP0001 : Unexpected Error: Install failed. Please contact your software vendor. (Exception from HRESULT: 0x80073CF9) I've googled the error and found

Listview group in uwp

浪尽此生 提交于 2019-12-03 17:02:48
I have a simple view with a ListView , I would like the ListView has two groups, a group for items with property complete= 1 and another group with complete= 0 . This is my class: public class myClass { public string name{ get; set; } public bool complete{ get; set; } } This is my XML: <ListView x:Name="MasterListView"> <ListView.GroupStyle> <GroupStyle > <GroupStyle.HeaderTemplate> </GroupStyle.HeaderTemplate> </GroupStyle> </ListView.GroupStyle> </ListView> <DataTemplate x:Key="MasterListViewItemTemplate" x:DataType="model:myClass"> <TextBlock Margin="0,5,5,5" Text="{x:Bind name}" FontSize=

Cannot load shared 'project' in Windows Universal app after upgrading to Azure SDK 2.6

回眸只為那壹抹淺笑 提交于 2019-12-03 15:54:19
问题 I've just installed the April 2015 release of the Azure SDK. It is version 2.6 and previously I was on 2.5. Now one of my projects will not load. It is the shared project in a Windows Universal application. When I right-click the project and choose 'reload' I get the pop-up error The method or operation is not implemented The output window gives more detail: Things.Shared.shproj : error : The composition produced a single composition error. The root cause is provided below. Review the

Visual State Manager in Windows 10 UWP not applying initial state on page load

≯℡__Kan透↙ 提交于 2019-12-03 15:00:57
I have a page with a relative panel to re-organize based on width. However, it doesn't seem to apply any state at load unless the width is > 720px. If I resize the page after it's loaded both states work. A workaround would be to check the window size on page loaded and manually choose the state, but I believe this should be handled automatically? I have other pages that work, I'm not sure what I'm doing different. Here is a simplified version of my code, I have it set red/blue backgrounds so I can tell if/which state is being applied <Page.Resources> <converters:HighlightConverter x:Key=