New to Telerik UI for WPFStart a free 30-day trial

Show Popup on Top of RadAutoCompleteBox

Updated on Sep 15, 2025

Environment

Product Version2018.2.515
ProductRadAutoCompleteBox for WPF

Description

How to align the popup with the search results of RadAutoCompleteBox to the Top of the control.

Solution

  1. Subscribe to the Loaded event of RadAutoCompleteBox.
  2. Use the FindChildByType method to get the Popup control.
  3. Set the Placement property of the Popup.
C#
	private void RadAutoCompleteBox_Loaded(object sender, RoutedEventArgs e)
	{
		var autoCompleteBox = (RadAutoCompleteBox)sender;
		var popup = autoCompleteBox.FindChildByType<Popup>();
		popup.Placement = System.Windows.Controls.Primitives.PlacementMode.Top;
	}

WPF RadAutoCompleteBox Show Popup on Top

In this article
EnvironmentDescriptionSolution
Not finding the help you need?
Contact Support