:::: MENU ::::

Tuesday, November 20, 2018

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;...

Sunday, 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...

Wednesday, November 14, 2018

Saturday, October 6, 2018

Yesterday I had the great privilege of speaking at the first ever Techorama Netherlandsevent (which was brilliant by the way - I highly recommend you visit if you get the chance). There were loads of great speakers covering the latest patterns, practices and tools for .NET, Azure and more.But my talk actually covered a relatively old technology - LINQ, which was introduced in 2007, and has only had minor updates since then. However, it remains...