New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
public class CustomSfDataGrid : SfDataGrid
{
public CustomSfDataGrid()
{
ItemsSourceProperty.OverrideMetadata(typeof(CustomSfDataGrid), new GridPropertyMetadata(null, OnItemsSourceChanged));
}
public static void OnItemsSourceChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
//You can write your own code here.
}
} |