FIX. RadDropDownList fires the TextChanged when placed in RadPageView and the RadPageViewPage is shown.
As a workaround in the TextChanged event check the RadDropDownList's IsLoaded property:
private void radDropDownList1_TextChanged(object sender, EventArgs e)
{
RadDropDownList dropDown = (RadDropDownList)sender;
if (!dropDown.IsLoaded)
{