after installing R # 9.0, my custom file layout from 8.2 no longer worked. I recreated the same template using the layout constructor, which is new in 9.0.
The part that I could not reproduce is a detailed definition of the order of properties using access modifiers:
Pre-9.0 looked like this:
[...] <Sort> <Access Order="private public internal protected-internal protected"/> </Sort> [...]
..., whereby the properties are ordered as defined - especially: private first!
In 9.0, when using the new constructor, the created XAML looks like this:
[...] <Entry.SortBy> <Access /> </Entry.SortBy> [...]
... which still sorts items by their access modifier, but uses some standard order specification. The designer does not allow you to specify any additional attributes and edit XAML manually, as errors occur in pre-9.0.
Is there a way in R # 9.0 to control the order of public , private , etc. such elements?
Btw. the same problem exists for other sort specifications, such as Kind : it is no longer possible to specify, for example, property must go before method , etc.
source share