The rendertransform tag has no wiki summary.
0
votes
0answers
20 views
Touch based rotation with windows 8 app using C# and XAML
Question : => How to implement Touch based rotation with windows 8 app using C# and XAML
I have mine windows 8 analog clock app that perform Touchable task to
move minutes and hour angle by ...
0
votes
0answers
26 views
Scaling Grid down with RenderTransform, yet only content to border of where old size was is visible
I am trying to scale down a Grid with an Image inside, because i want to have the ability to render the Grid with the image to a stream or bitmap in its original size, but still be visible nicely on a ...
0
votes
1answer
95 views
C# Canvas won't render to bitmap when Canvas is rotated (RenderTransform)
Here is my function:
private byte[] GetByteArray(IPhotoObject photo)
{
_addCanvas.RenderTransformOrigin = new Point(0.5, 0.5);
_addCanvas.RenderTransform = new RotateTransform(90.0);
...
0
votes
1answer
98 views
Why is ActualWidth/ActualHeight don't changed after performing RenderTransform?
I have the following code to resize an image control
private void ApplyScale()
{
((CompositeTransform)img.RenderTransform).ScaleX = TotalImageScale;
...
0
votes
1answer
98 views
How to limit zooming to 500% using MatrixTransform?
I have an Image as shown below. Using MatrixTransform I can easily zoom in and out. How can I detect if zooming is too small/large? E.g. I would like to limit zooming to 10-200%.
<ScrollViewer ...
0
votes
0answers
97 views
Image overflow while render transform
I modified this MSDN Example (section Example) to zoom in and zoom out edited picture with mouse scroll. The problem is that when I scroll mouse to zoom in, the picture is overflowing the content of ...
0
votes
1answer
89 views
How can I create runtime object of my Polygon? What does the value of RenderTransform refer to?
I am going to create a hexagon shape in WPF and found this XAML code:
<Polygon Points="14,0 7,12.1243556529821 -7,12.1243556529821 -14,1.71444889535133E-15 -7.00000000000001,-12.1243556529821 ...
1
vote
1answer
132 views
Default RenderTransform Converter syntax
I have a canvas with a RenderTransform applied like so:
<Canvas RenderTransform="0.1,0,0,-0.1,0,913">
Can anyone tell me what these values mean? I can't seem to find what converter is being ...
1
vote
0answers
90 views
RenderTransform causing invalidarrange
All the documentation seems to suggest that setting the RenderTransform isn't supposed to impact arrange. But that's not exactly the behavior I'm seeing.
I have an odd requirement for a control ...
0
votes
1answer
137 views
How to get the parent angle value in Silverlight
I have a view/page (UserControl) with objects which has applied styles from a resource dictionary. These UserControls will be rotated to fit an overall layout (physical components in a industrial ...
4
votes
2answers
641 views
Performance impact of applying either LayoutTransform vs RenderTransform?
I have had dealt with both LayoutTransform and RenderTransform and I know that each one is suited for a specific scenario which I had found a use for in previous projects.
Yet, from a performance ...
0
votes
1answer
140 views
Add TransformGroup to a FramworkElement when rendering WPF to a PNG
I've got an app that turns some XAML Usercontrols into PNGs - this has worked really well up to now, unfortunately I now need to double the size of the images.
My method (that doesn't work!) was to ...
1
vote
1answer
923 views
Modify ZIndex of an Items in an ItemsControl
Here is the code of my ItemsControl that zooms on items when the mouse goes over.
I don't manage to increase the ZIndex of the current zoomed item to put it over the others.
<ItemsControl ...
0
votes
2answers
1k views
How to use the RenderTransform to control the orientation of a textblck in windows phone
I want to make a textblock shown vertically, just like the username in the windows phone built-in email app:
And my Xaml code is:
<Grid x:Name="LayoutRoot" >
<Grid.Background>
...
0
votes
0answers
140 views
Excluding the child element from RenderTransform
I have a situation, where Canvas with few thousand elements is being scaled (using MatrixTransform). I want to add few elements to that canvas, that will not scale and remain the same size. In other ...
0
votes
1answer
300 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 ...
1
vote
0answers
307 views
Apply RenderTransform to an EllipseGeometry
I'm looking to apply the contents of a RenderTransform to the physical properties of an EllipseGeometry, meaning that the Center/RadiusX/RadiusY properties of the EllipseGeometry are changed by the ...
0
votes
2answers
699 views
RenderTransform Mouse.GetPosition
Ok,Better with some Corrections and APPLIED ONLY TO X COORDINATE:
Given following Code:
private Point MouseDownPosition;
private void OnStartDrag(object sender, MouseButtonEventArgs e)
...
0
votes
0answers
226 views
RenderTransform vs. Panel Properties vs.Layout transform
I would like to know the best way to achieve a Drag Move of UIElements around Panels.
We know that Canvas.SetTop, .Right, .Left etc. is slightly faster than a Render Transform, and also maybe the ...
1
vote
1answer
556 views
WPF/Silverlight: Clipping to Grid Cell Size & RenderTransform
I've a simple Grid defined this way:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="24" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
...
0
votes
2answers
1k views
WPF Render Transform Behaving Weird
I am experiencing a weird problem with a render transform in WPF. The project I'm working on needs to display a clicked user point over an image. When the user clicks a point, a custom control is ...
1
vote
1answer
171 views
How do you determine the actual size on screen?
In a wpf control with zoom functionality I calculate from the MouseWheelEventArgs how to scale the drawing canvas to implement the zoom effect.
Point mouse = e.GetPosition(myCanvas);
Matrix m = ...
0
votes
0answers
415 views
Bindings between RenderTransform and XAML
Good day,
I have a program that I want to support Right to left reading. That means that I want to flip my program(so the close button fx. is on the top left). This is no issue, I do in my ...
5
votes
1answer
370 views
How to prevent text to pixelize when I use RenderTransform?
When I use RenderTransform property and scale up a RichTextBox I get magnified text which is pixelized (square text edges).
How I can prevent this?
EDIT:
I have ...
0
votes
3answers
827 views
WPF Transformations — Rotating and switching width/height?
Basically, I have a FooControl (I did not set the Height/Width explicitly) added to a Grid.
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition ...
1
vote
1answer
547 views
wpf rotatetransform — How do I get my control position back to normal?
Basically, I rotated an item:
<Button Content="HelloWorld">
<Button.RenderTransform>
<RotateTransform Angle="270" />
</Button.RenderTransform>
</Button>
...
0
votes
1answer
383 views
Is UIElement.RenderTransform used by TransformToAncestor?
When a TransformToAncestor is called what Matrices are used to build up the resultant GeneralTransform? When step into the pdb all I see is a TransformField with a signature like:
private static ...
0
votes
1answer
402 views
How do I get OnRender to be called when a parent UIElement's RenderTransform is changed?
I have a System.Windows.Controls.Image derived class that needs notification that the parent UIElement's RenderTransform has changed (say a zoom occurred). I want to be able to limit whats kept in ...
4
votes
2answers
3k views
WPF: Get position of child UIElement within its parent. Ignore RenderTransform if any
Lets say I have this XAML code:
<DockPanel Name="pan">
<Label Content="AAA" Name="lab1" />
<Label Content="BBB" Name="lab2" />
<Label Content="CCC" Name="lab3" />
...
0
votes
1answer
290 views
How to get current position of UIElement within its parent?
Lets say I have this XAML code:
<StackPanel Name="pan">
<Button Name="but1" Content="Helllo" />
<Button Name="but2" Content="all" />
<Button Name="but3" ...
1
vote
1answer
218 views
Scale limit for matrix transform for a Microsoft Surface application
I've developed a surface application in which users are able to pull from a menu a movie and drag it on the main canvas. I've created a user control to host the movie and I implemented ...
2
votes
2answers
6k views
WPF rotate animation
I'm working with WPF and I can't achieve an animation.
I have a rectangle which rotates from x degree with a render transform origin from 0,0.
I want this rectangle to rotates from y degrees with a ...
0
votes
1answer
582 views
Removing the render transform of a child element
Ok,
So I have a situation, where an border is being scaled (sometimes by a large amount) and translated. Inside the border is a grid, and inside the grid are two images, one is a photo and is ...
0
votes
1answer
1k views
How do I use the rendertransform of a templated control in the controltemplate
In Silverlight 4:
I'm converting a Usercontrol to a templated control. In my Usercontrol I had a RenderTransform
<src:UserControlView.RenderTransform>
<TransformGroup>
...
2
votes
2answers
8k views
Applying animated ScaleTransform in code problem
I am trying to find out why the code below does not seem to work. It does not give an error - it simply doesn't scale. It actually does seem to work if I change it as to my second code sample.
Anyone ...
