Hi Cosyspro
Thank you for contacting Syncfusion Support.
Query : How to keep popup showed after to have close winform window ?
PopupControlContainer control is a popup type of control and by default, the pop-up will be hidden when the user clicks anywhere outside the pop up besides the control. In order to restrict this behavior , you can handled the BeforeCloseUp event of PopupControlContainer. Please find the code below:
Code:[C#]
// Handle the closing of PopupControlContainer
void popupControlContainer1_BeforeCloseUp(object sender, CancelEventArgs e)
{
e.Cancel = true;
}
|
Please try this solution and let us know if it is helpful.
Regards,
Vijayalakshmi VR.