Tagged Questions

7
votes
3answers
732 views

Making a Viewbox scale vertically but stretch horizontally

I want to make a Viewbox (or something similar) that scales only its height, and then stretches its content horizontally. If I do this: <Viewbox> <StackPanel> ...
5
votes
1answer
298 views

Get the size (after it has been “streched”) of an item in a ViewBox

Consider the following: Let's say the Window is 1024x768 and the ViewBox fills the entire window, this means the TextBox is really large on the screen. I want to get the size of the ...
4
votes
1answer
407 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
48 views

Getting a TextBlock/Label in Viewbox to Scale without undesirable padding

Here is my very simple xaml: <Window x:Class="Test.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
3
votes
1answer
3k views

WPF. How to show only part of big canvas?

Lets say I have a canvas defined to be 1000x1000 big. Is it possible to only show a 100x100 part of it in a Viewbox(or a rectangel)? Any help is apreciated.....
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
2answers
82 views

Textbox will not stretch to fill viewbox

I want the font size of my labels and textboxes in my LOB form to grow and shrink with window resize or resolution change. To achieve this I've placed my labels and textboxes within viewboxes. The ...
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 ...
2
votes
1answer
187 views

How to convert a ViewBox to an ImageSource?

I'm using a Viewbox to create a set of icons that I will dynamically bind to a WPF view. I'm binding to the resource name and using a Converter to convert the resource name to an ImageSource. I know ...
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 ...
2
votes
1answer
720 views

WPF: Viewbox and TranslatePoint

I have a Viewbox with a Canvas Child, I have the Stretch property of Viewbox to Fill, I have changed the width and height of the Viewbox, I need to get the location of children in Canvas with ...
1
vote
1answer
240 views

Zoom in and out a ViewBox with mouse scroll and use mouse pointer location as zoom origin

The title is pretty much self-explaining, but to add to the facts, I'm using a large Canvas inside my ViewBox and my ViewBox is placed inside a ScrollViewer. I've set the event handlers for the ...
1
vote
1answer
324 views

WPF Viewbox size changes but PointToScreen of child is always same

In order to handle multiple resolutions I have following controls in the same xaml page. Grid -> Viewbox (stretch, centered) -> Canvas (centered) -> Rectangle X (centered) FrameworkElement I am ...
1
vote
2answers
477 views

WPF: Change the style of a ViewBox depending upon the amount of data

I have a WPF app that has a ViewBox to display the items in my collection, diplaying a 2-column grid for my results. What I'd like to do is, depending on the number of items in my collection, change ...
1
vote
1answer
2k views

WPF ViewBox Zoom

Is there a way to zoom a viewbox content, excpet for one control? I have a viewbox with a grid, and in this grid I have some controls and I'm trying to zoom all the controls in the viewbox except one, ...
1
vote
1answer
777 views

Viewbox behavior that I cannot understand

I have a DataTemplate that's used as a logo to describe a Version object. The logo is simply an image and some text on top of it. I have to use the DataTemplate in 2 places: - As the Content of a ...
0
votes
1answer
44 views

WPF: How to spread/streatch textual content over an area?

In WPF, how do I spread/stretch content over an area (a wide horizontal area)? Like this: http://img51.imageshack.us/img51/3122/89786347.jpg ??? Here's my current code (from the upper part of the ...
0
votes
1answer
270 views

Viewbox containing a TextBlock seems to have minimum height

I'm trying to build a UI layout in WPF that can scale with the size of the window. The idea is to have a number of controls on the left, a number of controls on the right, and in the middle, have a ...
0
votes
3answers
393 views

Best approach to make a fullscreen WPF app

I'm creating a full-screen application in WPF and i need to choose how to actually resize the contents to use all the available space on the screen. As far as i know, there are 2 solutions: Grids ...
0
votes
1answer
197 views

How to display half of a rectangle canvas inside of a viewbox

I have a Canvas element, which has a width of 1400 pixels and a height of 750 pixels. This Canvas contains 2 Path elements, which are symmetrical, along a vertical axis, and which are positioned side ...
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
2answers
765 views

TextBlock inside a Viewbox - strange rendering

This is a question regarding a very simple construction - I have the following XAML: <Viewbox Height="100" Stretch="Uniform"> <TextBlock FontFamily="Georgia">My Cool ...
0
votes
1answer
1k views

Stretching the items in a WPF ListView within a ViewBox

I have a frustrating problem that I would much appreciate some help with. I have a ListView within a ViewBox and I can't get the items within the ListView to stretch horizontally. Here is the XAML: ...
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
98 views

Replacement for ViewBox in free for commercial use framework under Windows

I want to develop windows C/C++ program, but i need in it functionality like a Viewbox from .NET WPF. But i don't want buying Visual Studio platform because it has this control. Can anyone tell me ...
0
votes
1answer
159 views

Rotating Viewbox contents smoothly

I'm looking to teach myself better methods of doing things in WPF that I would normally do manually. In this case, I have a ViewBox with an image in it. I also have a button that uses a ...
0
votes
1answer
327 views

WPF Viewbox only shrink if I shrink the window horizontally

I have a grid in a Viewbox. If shrink the width of my window the grid getting smaller.. but if I shrink the height, nothing happened.
0
votes
1answer
909 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" ...
0
votes
1answer
456 views

Why does UseLayoutRounding not seem to work with Viewbox?

I'm trying to write a tile-based game in WPF 4. I want the game board to scale to fit the window, so I'm using a Viewbox; but I want each tile to be on a nice, crisp pixel boundary. I might be wrong, ...
0
votes
1answer
70 views

Treeview in viewbox wpf

Just wondering if it is possible to display treeview in a viewbox. Thanks
0
votes
1answer
196 views

Viewbox alternative using Winforms

I'm getting used to WPF and it's sometimes very painful to come back to Winforms development. I'm looking for some kind of alternative to the WPF Viewbox for Winforms. Do you have any idea? My major ...
0
votes
2answers
246 views

Viewbox in Cider designer hides all controls in the “box”

When I place a Viewbox as the child element of a WPF window, the Cider Designer "hides" all interior controls with the text "Viewbox" only appearing on the display. Why? Is there a problem with this ...
0
votes
1answer
2k views

WPF Lock Window Size to Viewbox Size

I have a window that contains a resizable viewbox with a uniform stretch. The window frame however does not stretch uniformly. So when someone resizes the form gaps of whitespace open up along one ...
0
votes
1answer
77 views

WPF Component Obscures Subcomponents in Designer

Some components like the viewbox are displayed in the visual designer as solid boxes. However, they can contain subcomponents. To view the subcomponents I comment out the viewbox. When I'm done I ...
-1
votes
1answer
91 views

Opinions: Viewbox

I don't want to deal with varying screen resolutions in a WPF windows app. So, I came upon an approach which I believe deals with all of the various issues of the display - within reason. The design ...