Hi Cortana,
Thank you for using Syncfusion products.
We have checked the reported query “Need to show popup when toolbar item clicked” from our side. We would like to let you know that you can achieve your requirement using absolute positioning in SfPopupLayout through SfPopupLayout.Show(x-position, y-position) method.
You can pass the negative y value to position the popup over the toolbar as like below code snippets.
private void ToolbarItem_Clicked(object sender, EventArgs e)
{
popupLayout.Show(this.Width, -12);
} |
For your reference, we have attached the working sample and you can download it from the below link.
Please let us know if you require further assistance.
Regards,
G.Muthu kumaran.