Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
539 views
in Technique[技术] by (71.8m points)

mvvm - WPF DataGrid CurrenItem at the top

I implemented a DataGrid via WPF MVVM where I'd like to "scroll" to a particular item. I don't want to select the correspond row though. Using the CurrenItem property works fine, but it "scrolls" to the target row at the bottom of the data grid (or more precisely to the full row at the bottom - there can be also be a partially displayed row below the target row).

Below an over-simplified version of what I implemented :

public class ViewModel
{
    public ObservableCollection<ItemModel> Items;

    public ItemModel CurrentItem { get; set; }

    public ViewModel()
    {
        Items = new ObservableCollection<ItemModel>();

        ..

        CurrentItem = Items[..];
    }
}
<DataGrid
    CurrentItem="{Binding CurrentItem}"
    ItemsSource="{Binding Items}">
      
    <!-- .. -->
    
</DataGrid>

PS I don't want to use external framework.

Thanks for any insights.

question from:https://stackoverflow.com/questions/66065170/wpf-datagrid-currenitem-at-the-top

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...