How to create an editable column headers in silverlight 4 datagrid?

Alright I fixed it. So I just created a string wrapper class like so.

Alright I fixed it. So I just created a string wrapper class like so: public class SingleString:System.ComponentModel. INotifyPropertyChanged { String _value = ""; public String Value { get { return _value; } set { _value = value; OnPropertyChanged("Value"); } } public SingleString() { } public SingleString(String val) { Value = val; } public override string ToString() { return Value; } public event System.ComponentModel.

PropertyChangedEventHandler PropertyChanged; protected void OnPropertyChanged(string propName) { if (PropertyChanged! = null) { PropertyChanged(this, new PropertyChangedEventArgs(propName)); } } } Then I used those object types for my column headers. So my header style worked out to be: This resulted in the Header values (which are SingleString objects) to have there values changed when the textbox text was changed.

Which resulted in correct behavior with my export. Thanks for the help.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions