Tagged Questions
4
votes
1answer
406 views
How to get a WPF Viewbox coefficient of scaling applied
In case we use WPF (Silverlight) Viewbox with Stretch="UniformToFill" or Stretch="Uniform" when it preserves content's native aspect ratio, how could we get knowing the current coefficient of scaling ...
3
votes
1answer
478 views
Items not drawing on Resize of Viewbox, Silverlight
I am currently designing a layout app in Silverlight and have a Canvas inside of a Viewbox. I add shapes to the canvas and they display properly, when I resize the viewbox to zoom in at 2x the height ...
2
votes
1answer
144 views
Gap between shapes after scaling in Silverlight
Create a 400 x 400 Canvas. Put a Blue rectangle that is 200 x 400 in it. Put another Blue rectangle, same size, with Canvas.Left = 200. Wrap this in a Viewbox and scale the view box. At certain ...
2
votes
1answer
566 views
Scrollable content inside WPF Viewbox with “UniformToFill”
How could I make the content which is put inside WPF Viewbox with Stretch="UniformToFill" be scrollable?
For example:
<Grid Height="500" Width="1000" >
<ScrollViewer ...
1
vote
1answer
306 views
Silverlight Viewbox not working with IE9
I'm developing a silverlight application for use on small and large monitors,
I had the code working perfectly, my main page contains a viewbox and all controls are children of that viewbox and they ...
1
vote
2answers
297 views
Putting Canvas Inside Viewbox in Silverlight With Image
All,
I'm trying to make the silverlight app I'm making resize in a reasonable manner. To do this, I thought I would use a dynamic grid. In the center of the grid I need to put an image inside of a ...
1
vote
2answers
312 views
How to Resize Controls in silverlight
I am working on a Silverlight application and my problem is like this: I have a StackPanel
and inside the stackpanel I have a ViewBox. Inside the viewbox I am adding images and rotating them 90 and/or ...
1
vote
1answer
260 views
Wrapping Viewbox around Divelements HTMLHost control in Silverlight
I'm currently having problems trying to use Divelements' free HTMLhost control with the Silverlight Viewbox control. I want the HTMLhost control to automatically scale up/down to fill the available ...
0
votes
1answer
165 views
How to scroll ItemsControl vertically inside of the Viewbox?
How to let ItemsControl scroll vertically, if it's placed in a viewbox?
<Viewbox>
<ItemsControl ItemsSource="..." />
</Viewbox>
I need the Viewbox to scale all the content of ...
0
votes
2answers
739 views