I'm using ListView
with GridView
. Is there GridViewColumn
resize event?
I will handle the PropertyChanged
event instead. The PropertyChanged
event is not seen in the Visual Studio intellisense, but you can trick it :)
GridViewColumn column = ...
((System.ComponentModel.INotifyPropertyChanged)column).PropertyChanged += (sender, e) =>
{
if (e.PropertyName == "ActualWidth")
{
//do something here...
}
};