The scaletransform tag has no wiki summary.
6
votes
4answers
238 views
Improving Canvas performance
I am developing a Maps like application using WPF. I have ~10,000 PathGeometry, Shapes added to the canvas. I have added ScaleTransform and TranslateTransform for zooming and panning controls.
The ...
5
votes
1answer
3k views
XAML: make a ScrollViewer show scrollbars when the ScaleTransform of a child object gets big
I am making a sort of "print preview" control for some documents in my Silverlight 3 application. I have a Canvas (for showing the document) inside of a ScrollViewer, and I have zoom in / zoom out ...
4
votes
3answers
118 views
Binding a RichTextBox to a Slider Control in C#
I have the following XAML code that I want to perform in xaml.cs.
<RichTextBox.LayoutTransform>
<ScaleTransform ScaleX="{Binding ElementName=mySlider, Path=Value}"
...
4
votes
1answer
498 views
How to scale an image using eye tracking in WPF?
I'm trying to zoom in and out each frame from a live video stream from a webcam, by opening or squinting my eyes. I already have the eye tracking part working, but I can't figure out where to fit in ...
4
votes
1answer
3k views
Scale transform in xaml (in a controltemplate) on a button to perform a “zoom”
I've got a button with an image in it and it's being styled by the following:
<ControlTemplate x:Key="IconButton" TargetType="Button">
<Border>
...
4
votes
1answer
619 views
WPF why is my ScaleTransform Frozen and how can I bind to it?
I have a pretty simple user control that I want to bind a ScaleTransform property to a DP in the code behind like so:
<UserControl
x:Name="RoundByRound"
DataContext="{Binding ...
3
votes
1answer
4k views
WPF Canvas Scaling/Transform to Fit
I'm reposting this question as I didn't get much of a response last time, hopefully a bit of re-wording might help...
Essentially what I'm trying to do is to create a databound canvas, that will ...
2
votes
3answers
241 views
What is ScaleTransform good for?
why I should use ScaleX="2" for example instead of double the width of my control ??
<Button Width = "100" Content="Button1"/>
<Button Width = "50" Content="Button2">
...
2
votes
1answer
152 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
3answers
396 views
Find the applied ScaleTransform on a Control or UIElement?
I have a control sitting somewhere in my Window. At the root of this Window is a grid named MainGrid. I have a ScaleTransform applied on MainGrid's LayoutTransform that I use to zoom in on all the ...
2
votes
3answers
945 views
Transform only one axis to log10 scale with ggplot2
I have the following problem: I would like to visualize a discrete and a continuous variable on a boxplot in which the latter has a few extreme high values. This makes the boxplot meaningless (the ...
2
votes
2answers
416 views
Silverlight scaletransform adjust scrollbars
I have the following UI element hierarchy: UserControl>ScrollViewer>Canvas. I am drawing lots of stuff on the canvas, and it becomes larger than the UserControl, at which point the ScrollViewer ...
1
vote
2answers
62 views
Adding shape at mousedown point on WPF canvas
I have a canvas with zoom (ScaleTransform). Now I have scaled the canvas by some arbitrary zoom value. I'm adding RectangleGeomtry at the MouseDown Point with every MouseDown event. But the strange ...
1
vote
3answers
173 views
Alternative to Graphics.ScaleTransform
I am doing custom drawing using the GDI+.
Normally if I want to fit whatever I am drawing to the window, I calculate the appropriate ratio and I ScaleTransform everything by that ratio:
...
1
vote
0answers
147 views
Problems with simple scaletransform in usercontrol in WPF (propably newbee question)
I have created a usercontrol which is supposed to flip it's content whenever a value is changed.
The value is the id of the object which is reached through a dependency property on the control itself.
...
1
vote
1answer
197 views
Image resize not reducing kiloBytes of the image - using imgscalr-lib-3.1
i am using imgscalr-lib-3.1 to create thumbnails to use in my galleria-classic photo album.
it is reducing the size (pixels i mean like 100*100) but not the kilobytes, (like 10K, 20K).
here is my ...
1
vote
3answers
239 views
WPF: The ScrollBar is not activated on ScrollViewer
WPF
Why the ScrollBar is not activated on ScrollViewer when I zoom in?
<Window x:Class="WpfApplication4.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
1
vote
2answers
203 views
wpf scale to textBox, textBox can not display cursor when i click textBox
First, I Zoom(ScaleTransform) the TextBox, then mouse to click on the TextBox. Sometimes can display the cursor, and sometimes can notdisplay the cursor. Looking for a solution to solution to the ...
1
vote
1answer
252 views
What is the relationship between ScaleTransform and Pixel
I am new to the concepts of pixels, dpi, resolution and stuffs. So let me put out this simple question for which I am finding hard to get a simple answer
What is the default measuring unit in wpf
...
1
vote
1answer
1k views
ScaleTransform for Image
I am trying to increase the size of the image by 20. So I am using ScaleTransform as shown below.. but the following code doesn't do any scale Tranform.. Any help would be appreciated...
<Grid>
...
1
vote
2answers
529 views
.NET Graphics.ScaleTransform converts print job to bitmap. Any other way to scale text?
I'm using Graphics.ScaleTransform to stretch lines of text so they fit the width of the page, and then printing that page. However, this converts the print job to a bitmap - for a print with many ...
0
votes
1answer
14 views
ScaleTransform on an image leaves whitespace
I'm creating a dialog with a single image, and a polygon overlaid. The problem is that the scale of the image is different from that of the polygon, so I want to scale the image down to match the ...
0
votes
0answers
20 views
Silverlight “Emptying” Animation
I'm looking to do an animation for a glass, so that it looks like a full glass of water it is being drained by an imaginary hole in the bottom. I have a colored background and I'm looking to make that ...
0
votes
0answers
7 views
Whats the better way to save image with its property and reassign it again
I am developing collage app. In which user can edit (rotate, zoome in/out, move) the image and can save it. I want to give edit option after saving. M working on it but its not showing me the image in ...
0
votes
2answers
142 views
Issue with rendering WriteableBitmap from Image in Silverlight
I have a next problem, I need to convert array of bytes to WriteableBitmap with resize. I write next code.
private byte[] ResizeImage(byte[] array, double maxWidth, double maxHeight)
{
...
0
votes
2answers
65 views
Why is the position of the drawable also changing when applying ScaleAnimation in Android?
I am trying to apply a scale animation to a rectangle, using code not xml. I want to make the rectangle grow taller, pretty simple.
RectDrawableView - creates a RectShape ShapeDrawable
public class ...
0
votes
0answers
141 views
iphone sdk pan gesture
I want to resize an image with the pan gesture. When I move to right, the image size should increase. And when I move to right, the image size should decrease.
My code:
<!-- language: lang-cpp ...
0
votes
0answers
93 views
Webkit vs Moz CSS animation/scale (Chrome not displaying/Firefox does)
I asked this question previously, but I'm not sure if it was clear. I've done a ton of troubleshooting since to no avail. So I'm back w/ a play-by-play hoping for some help.
Using JS, on doc ready, ...
0
votes
1answer
128 views
How to calculate the size of the scale transform applied control
How to calculate increased width and height of the scale transform applied control in WPF?
0
votes
0answers
253 views
Portrait image resizing in java with imgscalr, but the final output is landscape. How to guarantee it stays the same orientation?
I am using imgscalr to create scale my images in a Grails application. Here is the code:
BufferedImage sourceImg = ImageIO.read(new File("/tmp" + File.separator + filename))
BufferedImage destImg = ...
0
votes
1answer
72 views
Port ScaleTransform.Changed event in from WPF to Silverlight
In WPF, the ScaleTransform has an event calls Changed which raises whenever the scale X/Y is changed. But this event is not exist in Silverlight. Is there any way we can implement the same thing in ...
0
votes
0answers
120 views
WPF: ScaleTransform in RibbonWindow produces Margin above the Ribbon
I'm trying to scale a (Ribbon-)Window using LayoutTransform/ScaleTransform, but this introduces a gap between the Window-title and the ribbon.
Screenshot 1: Not Scaled
Screenshot 2: Scaled to 150%
...
0
votes
0answers
95 views
ScaleTransform with value 0.8 gives unintended behavior
today i run into a very strange problem. if i use ScaleTransform with value 0.8, i dont see a cursor anymore in a empty textbox. its an ugly behavior when using tab..
<Grid>
...
0
votes
0answers
267 views
Silverlight Mouse Event bug When Scaling Buttons on a Canvas
I have written an application (Silverlight 4) that displays a set of nodes hierarchically on canvas (an organizational chart). Each nodeis implemented as a custom control that derives from the Button ...
0
votes
1answer
188 views
Silverlight ScaleTransform issue
I am working silvelight application and I phasing issue of layout I mean I have I WrapPanel and this will be adjust according to scaletransform widght and height,
and now I adding WrapPannel Children ...
0
votes
1answer
223 views
Zooming into a Clutter CairoTexture while re-drawing
I am using python-clutter 1.0
My question in the form of a challenge
Write code to allow zooming up to a CairoTexture actor, by pressing a key, in steps such that at each the actor can be re-drawn ...
0
votes
1answer
388 views
ScaleTransform transforms non-linearly
I am using scale transform to allow a user to resize a control. What happens though is that when you start to move the mouse the control jumps to a new size, and then scales oddly. The further you ...
0
votes
4answers
525 views
ScaleTransform and CenterX
I have the following code
<Canvas Width="800" Height="600">
...
In the UserControl I animate the ScaleTranform to 1. I ...