Click here to Skip to main content
15,888,113 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello,
I am working On Silverlight Application.
In My aplication i used telerik control's Busy Indicator in RadWindow's Content.
In my Parent Page contain Action Button. Once Any button press that time open one Window with any Silverlight page. It's working fine but once any popup open then press Enter/Space that time it again open new radwindow.
If i remove busyindicator from user control then it's working fine. But i need Indicator in child window's Usercontrol.

Please give me some solution for this.
Posted

Hi Savalia Manoj, Hope this link[^] helps you.

Regards.
 
Share this answer
 
Hello all,
I have also try different solution for this issue.

//Set this after busy indicator = false

 System.Windows.Browser.HtmlPage.Plugin.Focus();
 txtName.UpdateLayout();
 txtName.Focus();

Another is this

// Set this in Loaded event of particular page.
this.IsTabStop = true;
this.UpdateLayout();
this.Focus();

Another one is this,
// IN Page Load Constructor
  txtName.IsEnabledChanged += (s, e) => txtName.Focus();
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900