Tagged Questions
3
votes
2answers
4k views
Aligning content in a WPF Viewbox
I have a Viewbox that is using Stretch=Uniform in order to not distort the content.
However... when the frame window is wider or taller than the content, the Viewbox content is always centered.
I ...
2
votes
1answer
530 views
Conditional XAML
For easy of development I'm using a ViewBox to wrap all content inside a Window. This is because my development machine has a smaller screen than the deployment machine so using a ViewBox allows for ...
0
votes
2answers
128 views
wpf custom panel
I'm looking at creating a panel that takes all the children and wraps them inside of a ViewBox so it can scale them down to a certain uniform size.
I'm not sure if this is even possible to do, but I ...
0
votes
1answer
269 views
Specifying a WPF's databound attribute's design-time value in XAML
I'm playing around with a Canvas inside of a Viewbox, and unforunately, the only way to see the elements in the Canvas, I have to assign it a Height and Width. However, the problem is that my Height ...
0
votes
1answer
907 views
How do I keep a constant FontSize in WPF Viewbox?
I have a Viewbox with a number of TextBlocks that are scaled and positioned perfectly by the ViewBox. Something like this:
<Viewbox Stretch="Uniform">
<Canvas Width="100" ...