Hi,
Yes you can.
Try adding the CategoryOrder attribute on your object. Something like :
Yes you can.
Try adding the CategoryOrder attribute on your object. Something like :
[CategoryOrder("Information", 0)]
[CategoryOrder( "Conections", 1 )]
[CategoryOrder( "Other", 2 )]
public class Person : INotifyPropertyChanged
{
}
You will be able to set your categories in the order you want with the integer value of the Category order attribute.