有没有办法使用ContentPage
in a UIViewController
?
我正在使用SfCalendar
继承 View 的 SyncFusion,我想在我的视图控制器中显示 callendar。
SfCalendar _calendar;
public CalendarTest(IntPtr handle) : base(handle)
{
}
public override void ViewDidLoad()
{
_calendar = new SfCalendar();
_calendar.OnDateCellHolding += DateCellClicked;
base.ViewDidLoad();
}