Change location of PopupContainer in CDD

Hello! Any help please.

I need to change the location of PopupContainer in ComboDropDown. Is there any way to do it?
Suprisingly enough, the property cdd.PopupContainer.Location isn't working.


1 Reply

FS Fathima Shalini P Syncfusion Team May 26, 2008 12:24 PM UTC

Hi Alex,

Thank you for your interest in Syncfusion Products.

If your intention is to show the PopupContainer at different location when clicking the DropDown button we can use it using ComboDropDown's DropDownButton.MouseDown event. Please refer the below code snippets:


void DropDownButton_MouseDown(object sender, EventArgs e)
{ this.popupControlContainer1.ShowPopup( this.PointToScreen(new Point(100,250)));
}


Please refer the sample given below:

http://websamples.syncfusion.com/samples/Tools.Windows/F73518/main.htm

Please let me know if any concerns.

Regards,
Fathima



Loader.
Up arrow icon