Hi,
i need that my last row in grid will be always selected and that the first cell in this row will be in edit mode.
BeginEdit() doesnt work for me becouse my ItemSource is not obserableCollection, its a custom collection:
Thanx
Masha
i need that my last row in grid will be always selected and that the first cell in this row will be in edit mode.
BeginEdit() doesnt work for me becouse my ItemSource is not obserableCollection, its a custom collection:
public interface ICustomObservableCollection<T> : ICollection<T>, INotifyCollectionChanged, INotifyPropertyChanged |
where T : EntityBase2, IEntity2 |
{ } |
public class CustomObservableCollection<T> : ICustomObservableCollection<T> |
where T : EntityBase2, IEntity2 |
{} |
Thanx
Masha