有没有办法在ContentPage
中使用UIViewController
?
我正在使用继承View的SyncFusion SfCalendar
,我想在我的视图控制器中显示callendar。
SfCalendar _calendar;
public CalendarTest(IntPtr handle) : base(handle)
{
}
public override void ViewDidLoad()
{
_calendar = new SfCalendar();
_calendar.OnDateCellHolding += DateCellClicked;
base.ViewDidLoad();
}
最佳答案
我已经附加了代码示例,该示例将SFCalendar添加到了ViewController视图。
public override void ViewDidLoad()
{
SFCalendar calendar = new SFCalendar();
base.ViewDidLoad();
calendar.Frame = new CGRect(0, 0, View.Frame.Width, View.Frame.Height);
SFMonthViewSettings month = new SFMonthViewSettings();
month.BorderColor = UIColor.Red;
calendar.MonthViewSettings = month;
View.AddSubview(calendar);
}
关于c# - 如何将ContentPage与UIViewController一起使用-VisualStudio IOS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44855241/