Advanced Forum Search Results
-
Actually you dont need to use any event handler to this checkbox, you can change your code to execute in the Property that you have bound to the checkbox. For example you are binding the property NO to the checkbox, so in the property NO you can write the code like
<data:DataGridTemplateColumn DisplayIndex="3" ...
-
Hello Viral0028,
Please dont confuse yourself that you
will be able to build a complete website Only with silverlight.
Silverlight will be only a part of the website, where it will be
rendered inside a ASPX page or HTML page.
For building a dynamic application
You can build two Silverlight ...
-
Can you explain more about the application..
Like => are you trying to upload/download file stream, or is it just xml, or just string..
-
Where is the image placed.
Is it in the Silverlight Project or Web Project.
if its in the web project u will have to use relative path..
-
You will have to inherit INotifyPropertyChanged in your class.
http://msdn.microsoft.com/en-us/library/system.componentmodel.inotifypropertychanged.aspx
-
You cannot bind XML to datagrid directly.. You will have to create a Generic List to bind the data to a grid..
-
Now I know the reason for your issue.
You are registering the Selection changed event for the combobox before the service call. Thats the reason it is getting fired. So you will have to register this event only after the service was completed. Please check below
public partial class DayActivity : UserControl{public ...
-
change the loaded event to the one below
void DayActivity_Loaded(object sender, RoutedEventArgs e)
{
loadProjctNameComboBox();
cboProjectName.SelectionChanged += new SelectionChangedEventHandler(cboProjectName_SelectionChanged);
}
let me know if this works for u..
-
http://silverlight.net/community/gallerydetail.aspx?cat=sl2
The contents are not aligned properly.. its totally mess at the top area.. why is this not fixed??
-
Yes you should be able to do that by adding a Template of the navigation and applying some relevent logic behind that. Check the video link to know more