xamarin.uwp

Xamarin Form - How to open documents in uwp desktop application

徘徊边缘 提交于 2019-12-04 18:13:45
I want to open the documents like pdf, office , image, txt, rtf inside the uwp desktop application. is there any control in toolbox which open this type of documents ? :( thanks in advance :) 来源: https://stackoverflow.com/questions/57177253/xamarin-form-how-to-open-documents-in-uwp-desktop-application

Can't bind CalendarDatePicker to a model in Xaml UWP

只愿长相守 提交于 2019-12-04 06:46:19
问题 I have model class in shared PCL (for android and uwp app) that contain datetime property: public class Meter { public int meter_value {get; set; } public DateTime meter_start { get; set; } public DateTime meter_end { get; set; } ... other int and string properties } In MainPage.cs i have public Meter _meter; public MainPage() { this.InitializeComponent(); _meter = new Meter(); } I'm trying to bind this to a xaml controls with following code: <TextBox Text="{x:Bind _meter.meter_value, Mode

Error DEP6200: Bootstrapping failed. Device cannot be found. SmartDeviceException - Deployment failed because no device was detected

≯℡__Kan透↙ 提交于 2019-12-02 17:48:49
问题 I have seen few posts here about same error but none worked for me. I am trying to deploy UWP from VS2017 from one machine to a Surface machine that is USB connected to the machine running VS2017. Both machines are running Windows 10 Pro, 17134 (1803) April Update. Surface machine has enabled Developer Mode in "For Developers" settings and Developer Mode package is installed on it and Remote tooling for desktop is enabled. It is also USB connected to the machine running VS2017 Enterprise 15.7

Xamarin.Forms App return data to calling App

旧巷老猫 提交于 2019-12-01 13:06:21
问题 So, either I am asking incorrectly, or it isn't possible, let's see which... If my app (Xamarin.Forms) is launched from another app, in order to get a url from my app, how do I return that data to the calling app? I wrongly assumed SetResult and Finish, I also wrongly assumed StartActivityForResult, but there has to be a way to do this. I know how to get data INTO my app from another app, but not the same in return. POSSIBLE PARTIAL SOLUTION -- UPDATE, FAILS So I have to setup an interface in

Xamarin Form - How to make UI Responsive in UWP

喜欢而已 提交于 2019-12-01 02:37:48
I am developing the DMS application in uwp desktop application. I have developed the design.but my designs are not responsive.I am gone through so many UI responsive articles but i am not able to make the ui responsive.:( I am uploaded my one project module please go through it and let me know whats wrong in it.I want to make ui responsive form login page to add new user. link Download the UWPUIResponsive zip file. thanks in advance.:) Xavier Xie - MSFT's reply is correct. And I checked your link, if you want to make UI responsive for your page, You could create VisualStateGroups that contains

Xamarin Forms UWP - Unable To Debug Shared Code

£可爱£侵袭症+ 提交于 2019-11-29 08:24:43
I've recently started having this issue for the latest version of Xamarin Forms with .NET standard 2.0 as the code sharing strategy. I am able to place a breakpoint and stop in any code that lives in the UWP project but if I place a breakpoint in the shared DLL code, the breakpoint turns from solid red to a red outlined circle filled in with white. When I put my mouse over the breakpoint, it says the symbols have not been loaded for that location. What am I doing wrong to be able to debug the shared code for Xamarin Forms UWP? Android and iOS work. What am I doing wrong to be able to debug the

Xamarin Forms UWP - Unable To Debug Shared Code

亡梦爱人 提交于 2019-11-28 01:49:29
问题 I've recently started having this issue for the latest version of Xamarin Forms with .NET standard 2.0 as the code sharing strategy. I am able to place a breakpoint and stop in any code that lives in the UWP project but if I place a breakpoint in the shared DLL code, the breakpoint turns from solid red to a red outlined circle filled in with white. When I put my mouse over the breakpoint, it says the symbols have not been loaded for that location. What am I doing wrong to be able to debug the