Advanced Forum Search Results
-
Good one on what you have asked for.
http://silverlight.net/forums/p/12467/41324.aspx#41324
-
http://silverlight.net/forums/t/98784.aspx
-
Subscribe to SelectionChanged event and access the value as (sender as ComboBox).SelectedItem.ToString()
-
Set AutoGenerateColumns="True" , this way u can make the binding dynamic and don't need to define columns in the datagrid
-
Hi, Try to apply data binding with each textblock so that the data is dynamically updated...
<TextBlock Text="{Binding Name}"/>
-Please mark as answered if this solved your problem.
-
Hi, Try to apply data binding with each textblock so that the data is dynamically updated...
<TextBlock Text="{Binding Name}"/>
-Please mark as answered if this solved your problem.
-
you can write a javascript function that calls a scriptable function in ASPX which returns the required text reading from config file. You can then call the javascript function from silverlight.
-
Hi, Cast the SelectedItem object to the binded object as below and access the property needed...
(sender as ListBox).SelectedItem as BindedObject
- Mark as answered if this has solved your problem
-
u mean the stack panel right... try using this property stack.Children.Clear();
-
You can add web config on the silverlight host web application , possibly the ASPX application that is hosting the silverlight.
-Please mark as answered if this has fixed your problem.