Tag: Xamarin Forms

  • Data Binding 101 with WPF, UWP and Xamarin Forms

    Data Binding is a major part of XAML that has been used in Windows WPF, Windows UWP and Xamarin Forms. The biggest benefit with data binding is that it synchronizes your data between your data source and the UI. Changes to the data source will automatically be pushed into the UI and optionally have changes…

  • Creating a custom native control using Xamarin.iOS

    A lot of apps need more customized UI than what is available with the current set of controls. Today we’ll add a customized Check Box control since iOS does not have a Check Box. Some suggest that you use the Switch control as a replacement for the Check Box, but when developing custom apps and…

  • Creating a custom native control using Xamarin.Android

    A lot of apps need more customized UI that what is available with the current set of controls. Today we’ll add a customized Check Box control since the Android Check Box has some limitation. Right click on your Xamarin Android project and select Add Item. In the Add New Item Window, select “View” and give…