Microsoft
Software
Hardware
Network
Question : How to find dynamic control in Silverlight 3.0?
Hello Experts,
I'm using silverlight 3.0 and I created a text box at run time...But I couldn't find that textbox.... What will I do that?
My C# code as follows
TextBox txtusername1 = new TextBox { Name = "txtusername", Height = 50, Width = 250, FontSize = 20, TextAlignment = TextAlignment.Center, TextWrapping = TextWrapping.Wrap, Foreground = new SolidColorBrush(Color.From
Argb(255, 173, 216, 230)), Opacity = 0.7 };
txtusername1.SetValue(Canv
as.TopProp
erty , -70d);
Button btnlogin= new Button { Height = 50, Width = 130, Content = "Login",Name="btnLogin" };
btnlogin.SetValue(Canvas.T
opProperty
, 70d);
btnlogin.Click += new RoutedEventHandler(btnlogi
n_Click);
void btnlogin_Click(object sender, RoutedEventArgs e)
{
loginwcfClient wcfclientobj = new loginwcfClient();
wcfclientobj.getloginCompl
eted += newEventHandler(wcfcliento
bj_getlogi
nCompleted
);
wcfclientobj.getloginAsync
(((TextBox
)this.Find
Name("txtu
sername"))
.Text) //Error }
}
because txtusername returns null value How to get it? Thanks in Advance
Answer : How to find dynamic control in Silverlight 3.0?
Try to find you control using FindControl("controlId");
If you use this you should also set the ID property of the textbox to ID="controlId"
Random Solutions
Windows 7 Licensing
Text Cursor Starts At Top of Page in Microsoft Office 2003
Using =Sumif in excel to calculate costs between two dates across different sheets
.net User Control Events
Conversion failed when converting date and/or time from character string.
getting error message when download offline address book
UNION all view % is not updatable because a partitioning column was not found
Update Pivot Table Based On Cell Reference - Error Handling
Screen resolution is off in Internet explorer.
Where are email attachments stored in windows mobile 6.5?