Hi Ryan,
Thanks for using Syncfusion Products.
We have analyzed your Query with “While setting the custom view in the another view in monthcell loaded event in Xamrin.Forms iOS ”. In the custom view child did not get the Size by setting the width request and height request for the children the mentioned issue can be resolved. Please refer below code example,
[C#] voidSchedule_OnMonthCellLoadedEvent(objectsender,MonthCellLoadedEventArgsargs) |
Based on your requirement we have prepared the simple sample and pass the schedule appointment count with in the schedule month cell. Kindly find the sample link below,
Sample Link :MonthCellCustomization
If the provided information does not meet your requirement. Could you please revert us back with your query. We are happy to assist you.
Regards,
Sivakumar P
[c#]
Button button = new Button();
button.Text = "click"; button.BackgroundColor = Color.Blue; button.VerticalOptions = LayoutOptions.FillAndExpand; button.HorizontalOptions = LayoutOptions.FillAndExpand; StackLayout stack = new StackLayout(); stack.Orientation = StackOrientation.Vertical; stack.BackgroundColor = Color.Green; stack.Children.Add(button);
args.view = stack; |