Actually this can be done very easily with the Screen class. Here is a small sample that display a second form, full screen, on your second monitor if there is one. Note: The code is to be put in your main Form class.protected override void OnLoad(EventArgs e){ base.OnLoad(e); if (Screen.AllScreens.Length > 1) { Form2 frm = new Form2(); // Important ! frm.StartPosition = FormStartPosition.Manual;...
Tuesday, November 20, 2018
Sunday, November 18, 2018
November 18, 2018

'Done' button on Numeric keyboard on iOS is a very popular clients request, but it does not appear out of the box. Luckily the solution is very easy (as usual), all we have to do is to extend 'Entry' control and to add a custom renderer: using Xamarin.Forms; namespace YourNamespace.Controls{ public class ExtendedEntry : Entry { }}view rawExtendedEntry.cs hosted...