We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Are there samples for the Xamarin.Forms controls? I am using Xamarin Studio on a MAC

I do not see any samples for the Xamarin.Forms controls.

When I click on download samples, it simply downloads the package of assemblies/dlls.

3 Replies

SP Saravana Pandian Murugan Syncfusion Team May 15, 2017 11:50 AM UTC

Hi Ted,

Thanks for contacting Syncfusion support.

You can download Essential Studio for Xamarin from the following link.

Link: https://www.syncfusion.com/downloads/version-history/15_2_0_40

And you can find the samples for all the controls under the following location.

Location: {Syncfusion Installed location}\Essential Studio\15.2.0.40\Xamarin\sample\

Please let us know if you need further assistance on this.

Regards,
Saravana Pandian M.



PH praveena H M May 3, 2018 03:03 PM UTC

Hello Syncfusion Team,

We are looking for CustomDatePicker for DataForm control. Is it possible instead of xamarin forms DatePicker.

If it is possible please guide us or give any samples for CustomDatePicker  inside DataForm control.

Thanks
praveen



SV Srinivasan Vasu Syncfusion Team May 4, 2018 12:32 PM UTC

Hi Praveena, 
 
Thanks for contacting Syncfusion support. 
 
We have checked your query and you can achieve your requirement by using CustomEditor in SfDataForm. You can create a new CustomEditor which is loaded with CustomDateTimePicker control insteadOf Xamarin.Forms.DatePicker in SfDataForm. 
 
Please refer the below code example and comments. 
 
 
  // You can load your own CustomDateTimePicker control in SfDataForm by using CustomEditor 
 
  public class CustomEditor : DataFormEditor<CustomDateTimePicker Control> 
    { 
        public CustomEditor(SfDataForm dataForm) : base(dataForm) 
        { 
        } 
    } 
 
 
    // Register the CustomEditor by using below way. 
 
    dataForm.RegisterEditor("CustomDateTimePicker", new CustomSliderEditor(dataForm)); 
 
   dataForm.RegisterEditor("CustomDateTime", " CustomDateTimePicker "); 
 
 
Please refer the below UG Link: 
 
 
 
Regards, 
Srinivasan 


Loader.
Up arrow icon