The ViewBox is a very useful control in WPF. If does nothing more than scale to fit the content to the available size. It does not resize the content, but it transforms it.
0
votes
0answers
48 views
WinRT Scale To Fit issues
I'm trying to create an app with a fixed resolution of 1366x768 that will scale to any size screen. I am following the guidelines from microsoft found here ...
0
votes
0answers
56 views
Resizing with Viewbox, Canvas and Drag-Drop items
I want my application to have a Canvas overlaying a background Image. The Canvas will contain objects (TextBlocks, etc.) that can be repositioned (setting Top, Left) via drag-drop.
The application ...
0
votes
1answer
51 views
SVG viewBox affecting fill on text elements
I was trying to display some text filled with a pattern but can't find a way to avoid a strange behaviour with the mapping of my pattern.
Here is a code sample of the problem :
...
3
votes
1answer
135 views
Windows store app for all resolution
I trying to make my application working for all resolution for that I used ViewBox .
But ViewBox is not adapting the size of screen.It's somewhat bigger than the screen.
How page should appear for all ...
2
votes
1answer
127 views
Drag and drop a set of paths in Raphael.js when using a viewbox
I have a question regarding drag and drop with Raphaƫl 2.1.1. I am able to successfully drag a path around when I use the code available here.
However, when I add the viewbox method, the drag and ...
1
vote
1answer
300 views
Maintaining fixed-thickness lines in WPF with Viewbox scaling/stretching
I have a <Grid> which contains some vertical and horizontal <Line>s. I want the grid to be scalable with the window size, and retain its aspect ratio, so it's contained in a <Viewbox ...
0
votes
0answers
75 views
ViewBox Stretch blurs the controls
ToolTip with numbers is a child UserControl, which is added to Canvas.
Canvas is a child of the ViewBox.
In order to scale the contents of the Canvas resizing control.
The problem is that ToolTip ...
1
vote
0answers
200 views
The Viewbox control and drag drop
When using the XAML Viewbox control on win8 rt, for different screen sizes (resolutions) where the control automatically scales the
e.Delta.Translation drifts from the correct X,Y position. The ...
0
votes
1answer
78 views
Trouble with getting correct viewbox SVG
I am trying to plot some points with svg. They are x,y co-ordinates with a small range:
57.206116 -6.223032
57.2225 -6.2441702
57.233299 -6.1833301
57.246666 -6.210278
57.208561 -6.2244201
...
0
votes
0answers
106 views
Change size of SVGDocument in Batik
I am trying to resize an SVGDocument inside a JSVGCanvas by modifying it's width, height and viewbox attribute. But when I do this, the document seems to zoom in. This happens even if I don't even ...
0
votes
1answer
138 views
Is it possible to change the quality of the image interpolation in WPF Image control?
Image control - placed into Viewbox.
For automatic scaling when the window size changes.
Everything works perfect.
Is it possible to change the type of interpolation in my case?
For example select ...
0
votes
2answers
99 views
Visibility of ViewBox set from code
On my Window, I have a ViewBox control, which contains a custom progress bar. I set its Visibility to Collapsed in design mode, because I need to display it in only certain moment (during login into ...
2
votes
1answer
173 views
How to adapt the app to multiple resolution in Windows8
I have the layout code below in xaml
<Grid>
<StackPanel x:Name="TestStackPanel" Grid.Row="2" Orientation="Horizontal">
<ScrollViewer x:Name="TestScrollViewer" Height="300" ...
0
votes
0answers
51 views
WPF Listbox . items are viewboxs, Cannot centered it in the itemcontainer
I've a listbox which display pokerchips.
Pokerchips derived from usercontrol, and each are in a viewbox.
My mainwindow xaml :
<Window xmlns:my="clr-namespace:PocGeometry" ...
0
votes
0answers
31 views
How can I determine which SVG elements are within a range of pixels using Raphael? [duplicate]
Possible Duplicate:
Hit-testing SVG shapes?
I have a web application that draws out maps with certain regions colored, similar to an election map of red and blue states in the US. I have ...
0
votes
0answers
159 views
C# XAML Scale ItemsControlsUniform to Fit Form
So I have an ObservableCollection<Shape> where the shapes contain the properties: width, height, x and y.
Id' like to have:
the group of shapes scaled to fit the form (or grid cell) -> ...
0
votes
1answer
88 views
Implement svg viewBox with android canvas
I tried to build a simple svg parser on android using android Canvas. However, I can't find a way to implement viewBox property of svg. I tried to use
canvas = picture.beginRecording(width, height);
...
0
votes
0answers
45 views
viewBox doesn't give me the correct coordinates
paper.setViewBox(p[0]-size/2,p[1]-size/2,size,size);
I want p[0] (x) and p[1] (y) to be in the center of my view.
when my screen width is greater then it's height, it doesn't work.
How can I set ...
0
votes
2answers
433 views
SVG to viewBox Coordinates
I am using JQVMAP to generate some maps of the US. The plugin has an onRegionClick callback. I am trying to zoom in to the clicked state within this function. I kind of have an idea of how to do it by ...
0
votes
1answer
69 views
centering an object after changing the viewbox
I'm using Raphael to build a map-like site.
when panning and zooming I want some objects to be in the middle, there for I need to know where is the middle in perspective to the current viewbox (not ...
0
votes
1answer
133 views
Checking and deleting attributes in SVG using Batik in Jaba
The question basically says it all. How can I check if SVG has a viewBox attribute? I am using Batik lib. I need this because I need to (at least) notify the user that there is a viewBox attribute.
...
1
vote
0answers
185 views
Scaling InkCanvas strokes to fit specific dimensions to crop out unused space
I am attempting to scale an InkCanvas's contents (Strokes) to fit a fixed page size for printing. I want to essentially crop out all of the surrounding whitespace from the InkCanvas, and scale up the ...
2
votes
1answer
306 views
How to retrieve element's coordinates relative to an svg viewbox?
In my index.html I have an svg viewbox:
<svg viewBox = "0 0 2000 2000" version = "1.1">
</svg>
I wish to animate an svg ellipse I have created such that when the ellipse is clicked it ...
0
votes
2answers
1k views
Snap view not functioning properly?
I coded an app in windows 8 consumer preview and i was not aware of view box, so the app doesn't fit for particular resolutions then i used view box to make the app fit for all the available ...
0
votes
2answers
422 views
WPF for LCD screen Full HD
I am developing a WPF application that will be displayed in a Full-HD LCD screen (42 inch).
In addition, I need to accommodate the controls in absolute positions.
In the development environment I can ...
0
votes
1answer
499 views
Scale hardcoded SVG image based on div size upon page load
I have a div element which contains a svg graph (bunch of circles and edges), and I also set viewBox attribute on the svg element. The coordinates of the nodes and edges in the graph are hardcoded for ...
1
vote
0answers
88 views
Why is the viewbox's actualwidth growing much faster than it actually is?
A common issue with some controls in ViewBoxes is that they don't stretch to fill the Viewbox, so I tried to fix that with this code:
Public Sub WindowResized() Handles Me.SizeChanged
...
0
votes
0answers
93 views
which java.awt.Graphics2D implementation can set the SVG viewBox?
we have a complicated drawing on screen that not always starts at 0,0 and its size is only known after drawing it. To convert it to SVG, we use FreeHEP.graphicsio.svg like this:
VectorGraphics canvas ...
1
vote
2answers
444 views
Viewbox makes WindowsFormsHost disappear in WPF
I have a WPF project where I maintain video ratio, by placing video control inside a ViewBox. The video control is a WinForms object wrapped inside a WindowsFormsHost. I also added a gridSplitter to ...
1
vote
1answer
457 views
Change in mouse position when viewbox is added
I am currently learning and working in JavaScript and SVG and I am new to it.
Here is my scenario
I have a div which has an SVG inside it.
<div id "O_div">
<svg>
<line x1= "0" ...
0
votes
1answer
1k views
How to use viewbox when height of svg is dynamically changing
I have a resizable div. It has two inner divs. One of the inner divs has an svg element in it.
In the svg element I am adding and removing the content dynamically such that each time I add something ...
3
votes
1answer
322 views
Blur background with Viewbox
i'm building a similar effect which AERO glass gives you, a blurred window. I quickly realized that is not easy in WPF, but i managed to get it to work almost completely.
I'm just stuck when a Viewbox ...
0
votes
2answers
212 views
resize text to largest possible size to fit a drawing rect with wraping
this are many similar questions asked to this but no good answer? i use context drawing to draw input text on a certain rect size "720,576", now i need to fit the whole text in that to the maximum ...
1
vote
0answers
164 views
Getting distorted svg circles after a lot of zooming in
I am using raphael to create svg circles. I am also doing zoom and pan using setViewBox as suggested in http://jsfiddle.net/9zu4U/10/ . Actually my problem is like I create a circle on screen and ...
1
vote
2answers
333 views
SVG viewbox and scrolling on the y-axis
I have a huge svg 3200*1800. I only want to show a part of that image something like 400*1000, ensuring that the width is the dominant attribute and having a scroll bar for the height but when I set ...
1
vote
1answer
349 views
Why doesn't my viewbox resize properly after removing an element from the set?
Here is a working jsFiddle example.
Basically you enter a number and hit "Add". A row containing that number of boxes will be generated using Raphael and the viewbox will resize to fit the rows. Add ...
0
votes
1answer
351 views
Adjusting aspect ratio of my wpf window using Viewbox
I want to use viewbox for maintaining my wpf window's aspect ratio. i.e if i put my application on large monitor , it sholud automatically fit to that screen and if run it on my laptop it should ...
0
votes
3answers
725 views
Calculate ViewBox ScaleFactor on a Metro Style App
Is there any way to get the scale factor by which a ViewBox scales its content in a XAML Windows 8 Metro Style App
1
vote
1answer
202 views
Why is Viewbox breaking layout in Grid with equally spaced rows/columns?
Put it simply, I have one Grid with three equally high rows and two buttons. I want to have first button in the first row, then second row empty and finally second button in the third row. This way I ...
0
votes
1answer
912 views
Zooming To Mouse Point With ScrollView and ViewBox in Wpf
I have some paths drawn to the screen in wpf. The coordinates being used are quite small so they have been made to fill the screen with a view box. I am now trying to implement pan and zoom ...
1
vote
1answer
138 views
FabricJS support for SVG viewBox element?
Does fabricJS support SVG viewBox element so that it will render only that on canvas? That way, zooming of the entire screen could be implemented easily.
3
votes
1answer
2k views
Manipulate SVG viewbox with JavaScript (no libraries)
I'm trying to alter an SVG elements viewbox in JavaScript. Basically, I'm drawing a binary search tree, and when it gets too wide, I want to alter the viewbox to zoom out so that the tree fits in the ...
1
vote
1answer
447 views
WPF WrapPanel In a ViewBox maximum size
In my program I have a WrapPanel inside of a viewbox. The WrapPanel (which is actually the ItemsPanelTemplate of an ItemsControl) contains some bound items that can all be different sizes.
...
1
vote
2answers
547 views
Calculating viewBox parameters based on path elements in SVG
I get an XML or JSON with paths only, and I need to recreate the SVG image.
I create an empty
<svg xmlns='http://www.w3.org/2000/svg' version='1.1'></svg>,
I add a <g ...
-1
votes
1answer
359 views
setting viewbox coordinates to extents of svg drawing
I have a set of dynamically created svg objects. Some of them have rather complicated transformations applied to. I mean this is meaningless that I want to calculate maximum and minimums of X & Y ...
1
vote
1answer
357 views
How to make a child element of a Viewbox not scalable
I have a WPF Window with Viewbox. I want one of the child elements of this Viewbox to stay the same size at any screen resolution.
My XAML:
<Viewbox Name="MyMainViewbox" Stretch="Fill">
...
2
votes
1answer
195 views
checking if svg element is inside the viewbox
having a SVG inline an HTML document ,
with a viewbox "x y w h".
How can I check if an element is inside the view box?
by saying element it could be a nested child path inside a group and so on ...
...
0
votes
3answers
580 views
ListView - select index only programmatically
i am trying to implement listbox (or listview):
<ListView ItemsSource="{Binding Players}" SelectedIndex="{Binding SelectedIndex}">
My problem is, that i want to bind selected index to ...
0
votes
1answer
269 views
svg scroll perfomance in mozilla firefox
I wrote a simple drag-n-scroll svg (svg file, code). Here I move a viewBox of the picture after the mice.
And tested it in chromium and firefox.
In chromium it works nice (drags picture by mouse ...
0
votes
1answer
363 views
ViewBox fill with svg
I have a graph (svg) inside a viewbox, if the graph is bigger than the viewbox it is shrank to fit, but if the graph is smaller than the viewbox it is not uniformed stretched in order to fill the ...
