/// <summary> /// Raises the configure cell event. /// </summary> public void OnConfigureCell(CustomCell widget, CellEventArgs args, Control control) { using (widget.Platform.Context) widget.OnConfigureCell(args, control); }
/// <summary> /// Raises the configure cell event. /// </summary> public void OnConfigureCell(CustomCell widget, CellEventArgs args, Control control) { widget.Platform.Invoke(() => widget.OnConfigureCell(args, control)); }