Is there a way to use the ContentPage
in a UIViewController
?
I'm using SyncFusion SfCalendar
that inherits View and i want to show the callendar in my view controller.
SfCalendar _calendar;
public CalendarTest(IntPtr handle) : base(handle)
{
}
public override void ViewDidLoad()
{
_calendar = new SfCalendar();
_calendar.OnDateCellHolding += DateCellClicked;
base.ViewDidLoad();
}
I have attached the code sample, which added the SFCalendar to ViewController view.