BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
<Syncfusion:SfDataGrid x:Name="datagrid"
AllowDeleting="True"
AllowEditing="True"
AutoGenerateColumns="False"
BindableView="{Binding View,Mode=TwoWay}"
ItemsSource="{Binding OrderInfoCollection }"> |
private ICollectionViewAdv view;
public ICollectionViewAdv View
{
get
{
return view;
}
set
{
view = value;
//You can listen the view events from here.
if(view!=null)
view.CollectionChanged += View_CollectionChanged;
}
}
private void View_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
//You can do your own logic here.
} |