4 changed files with 29 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||
using System; |
|||
|
|||
namespace Microsoft.Windows.Controls.PropertyGrid.Attributes |
|||
{ |
|||
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)] |
|||
public class PropertyOrderAttribute : Attribute |
|||
{ |
|||
public int Order { get; set; } |
|||
|
|||
public PropertyOrderAttribute(int order) |
|||
{ |
|||
Order = order; |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue