I created a custom version of canvas by simply extending/inheriting from the Panel.

When I want to draw or render something on it, I simply create a DrawingVisual, draw the desired graphics and call the AddLogicalChild(Visual), AddVisualChild(Visual) and incrementing the count of the Visuals of the Panel.

This works great when I am adding DrawingVisual instances, but when I try to add a Button here and define the dimensions (MinHeight, MinWidth), it is not displayed.

Is it possible that UIElements need a different logic of handling to be displayed? Basically, how can I add a UIElement to that extended Panel that would be displayed and could be manipulated with?

link|improve this question

67% accept rate
feedback

1 Answer

For UIelements its the Collection Children to use

public void AddChild(UIElement newChild)
{
   this.Children.Add(newChild);
}

You should also look at the InternalChildren Collection which is recommanded to use in extensions of Panels

link|improve this answer
This is true but the AddLogicalChild/AddVisualChild overwrites any other visuals. In other words, as soon as I create visual with calling these two methods the Children are not drawn. – grizzly Jun 8 '11 at 12:24
Ok I tried adding to the InternalChildren collection but visually nothing happened. There are two possible scenarios I guess: either the Visuals and Add...Child is not intended to be used with existing controls or I am missing something... – grizzly Jun 9 '11 at 7:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.