Contents
- Adding pop-up resizing support to an application
- Sample link
Having trouble getting help?
Contact Support
Contact Support
Popup Resize Support in WPF AutoComplete (Classic)
28 May 20211 minute to read
AutoComplete allows you to resize the drop-down list popup using the CanResizePopup property. If this property is set as True the thumb will be shown in the right bottom corner of the drop-down list which adjusts the height and the width of the popup at runtime. If this property is set as False, the visibility of the thumb will be collapsed and you will not be able to resize the popup at runtime.
Adding pop-up resizing support to an application
You can use CanResizePopupproperty to attain this functionality by setting the value as True.
<syncfusion:AutoComplete x:Name="AutoComplete1" CanResizePopup ="true" />
AutoComplete autoComplete1 = new AutoComplete();
autoComplete1. CanResizePopup = true;
Sample link
WPF Sample Browser-> Tools -> Editors -> AutoComplete Demo