Resize content in a dockpanel
Is it possible to resize all children content, ie., a MediaElement, when the size of it's parent DockPanel changes?
Thanks!
Is it possible to resize all children content, ie., a MediaElement, when the size of it's parent DockPanel changes?
Thanks!
If you want to scale a UI, you might look at a ViewBox.
The reason you can't use someWPFObject.Width is because I believe it is actually the value converter that handles the special case of Auto.
When I try this:
vc_clone.SetValue(
DockPanel.HeightProperty , "Auto");I get this error:
{"'Auto' is not a valid value for property 'Height'."}
What am I doing wrong? Thanks for the help.