|
The LogicalChildren of a ContentControl is of "protected-type" access. You can
derive it to a custom class and then override the "LogicalChildren" property.
$$[C#] public class SPanel : StackPanel { protected override
System.Collections.IEnumerator LogicalChildren { get { return
base.LogicalChildren; } } } $$
|