/// <summary> /// Shows the ContextPopup. The ContextPopup is positioned at the horizontal and the vertical position of a specific anchor with offsets. /// </summary> /// <param name="anchor">The view to which the popup should be anchored.</param> /// <param name="xOffset">The horizontal offset from the anchor.</param> /// <param name="yOffset">The vertical offset from the anchor.</param> /// <since_tizen> 4 </since_tizen> public void Show(View anchor, int xOffset, int yOffset) { _contextPopup.Show(anchor, xOffset, yOffset); }
/// <summary> /// Shows the ContextPopup. The ContextPopup is positioned at the horizontal and the vertical position of a specific anchor with offsets. /// </summary> /// <param name="anchor">The view to which the popup should be anchored.</param> /// <param name="xOffset">The horizontal offset from the anchor.</param> /// <param name="yOffset">The vertical offset from the anchor.</param> public void Show(Xamarin.Forms.View anchor, int xOffset, int yOffset) { _contextPopup.Show(anchor, xOffset, yOffset); }