Browse By Tags

  • Retrieve Modified Records/Objects from XamDataGrid with MVVM Pattern

    I have a XamDataGrid bound to an ObservableCollection in my ViewModel:

    public ObservableCollection<InventurPos> LoadedPositions { get; set; }

    XAML:

    <custom:XamDataGrid Name="InvPosDisplay" Grid.Row="2" Grid.Column="2" DataSource="{Binding LoadedPositions…

  • How to invoke an editor based on underlying object type?

    I am working on customizing xamDataGrid to edit categorized collection of name-value pairs, which should look like property grid. How do I configure xaml to invoke custom editor based on object type in the cell?

    Thanks.