Example #1
0
        private void OnPreparePropertyItemInternal(object sender, PropertyItemEventArgs args)
        {
            // This is the callback of the PreparePropertyItem comming from the template PropertyItemControl.
            args.PropertyItem.Level = this.Level + 1;
            _containerHelper.PrepareChildrenPropertyItem(args.PropertyItem, args.Item);

            args.Handled = true;
        }
Example #2
0
 private void OnPreparePropertyItemInternal(object sender, PropertyItemEventArgs args)
 {
     _containerHelper.PrepareChildrenPropertyItem(args.PropertyItem, args.Item);
     args.Handled = true;
 }