ES-949556_Master Need to resolve the WPF UG mistakes #1998
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Task Link
UG-949556
Description
Need to update the invalid code snippet in the WPF MultiColumnDropDown and SfDataGrid Control and rearranged the table content in the WPF TreeGrid Control UG documentation.
Solution Description
I have updated the RowDragDropController_Drop event. Within this event, we retrieve the record using e.TargetRecord. However, TargetRecord returns the record index, so when converting it to a model, it throws an exception. To resolve this issue, I directly used e.TargetIndex instead and did not convert it to a model object.
In the MultiColumnDropDown XAML code, we had used invalid double quotes. To fix this, I replaced them with valid quotes.
In the SfTreeGrid, I have arranged the Table of contents based on the SfDataGrid.
Related PR
#1997