I’m porting some c# stuff here, and I often find that would be lovely to have some additional properties on ProcessNode
, like Category:
/// <summary>
/// RelativePanel Attached property.
/// Identifies the RightOfProperty
/// </summary>
[ProcessNode(Name = "RightOf (RelativePanel)", Category = "AttachedProperty")]
Like in this example i have something called AttachedProperty
that is kind of decorator, witch means if something is connected to RelativePanel
, RelativePanel
would attach some properties to it… Meaning i would love to make it end up in something like Controls.RelativePanel.AttachedProperties
.
I can prolly define namespace like this, but feels that Category = "RelativePanel.AttachedProperties"
would be a better solution…
This kind 'a works similar to what i want: