Advanced Forum Search Results
-
Thanks Terri and sursture.
Actually the recover password link that the site posted was something like
http://silverlight.net/user/ChangePassword.aspx
UserName=udithanda_4000_gmail.com&PrivateToken=...I replaced
UserName=udithanda_4000_gmail.com with UserName=udithanda@gmail.com.
I think the site needs to fix this ...
-
I did not expected this from the site. I have forgotten my password and try to recover it. The site does send me an email but when I click on the link it opens up a page saying "Not authorized".Thanks to firefox I am still able to login in the site and send this post.
:(
Thanks
Udit Handa
-
Move it within the constructor.
public Page()
{
InitializeComponent();
this.Loaded += new RoutedEventHandler(Page_Loaded);
}
-
How about writing a custom Handler. Do you think this also does not solve ur purpose?
public class FileUploader : IHttpHandler
{
public void ProcessRequest(HttpContext context)
...
-
Try exploring VisualTreeHelper. I use the following function to get the first parent of a control that is of a particular type.
public static T GetParentFromTree<T>(DependencyObject child) where T : class
...
-
This is not possible themes can not be changed at runtime.You can do this only once throughout the lifetime of a silverlight application.
If you dont mind reloading the Silverlight application you can have a combo box in ASP.Net Page and pass the ThemeName as InitParameter.
eg. ...
-
Here is the xaml
<UserControl xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls" x:Class="myFirst.Page"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
-
If you are looking to show a dialogbox on the page refer http://silverlight.net/forums/t/102017.aspx.
Thanks
-
Why dont you place a control within the row and change the Height of the control.
-
use
this.Dispatcher.BeginInvoke(delegate()
{
TextBox.Text =s;
});
UI Controls are all created in ...