Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
354 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
1answer
681 views

Parts of image missing when using ScaleTransform with LayoutTransformer and Scrollviewer on Windows Phone 7

I am trying to have a scaled image in a ScrollViewer in my Windows Phone 7 application. On the application page I define the controls like this: <ScrollViewer ...
1
vote
2answers
38 views

Why doesn't the Row Height of a WPF Grid resize to the Height of its content?

I have a Grid similar to this: <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="Auto"/> <RowDefinition ...
0
votes
0answers
28 views

WP7: LayoutTransform a ListBoxItem

Here's my XAML: <ListBox x:Name="MyListBox" FontSize="40" SelectionChanged="MyListBox_SelectionChanged"> </ListBox> In this code-behind (below), I am attempting ...
0
votes
0answers
157 views

Auto-Scale WPF TextBox/RichTextBox content to fit available space

I have the following problem: I want to setup a RichTextBox that automatically can resize the content inside to fit maximum of the available space while not change the layout of the content (e.g. ...
0
votes
0answers
60 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 ...
0
votes
1answer
73 views

Flip a UIElement but preserve text inside from flipping

I think the title is pretty straightforward. I'm using some custom controls. I want to flip the tab header of a custom tab control. I tried a layout transform (ScaleTransform X = -1) to flip ...
0
votes
1answer
118 views

wpf textblock text is not clear when using layouttransform

I am using TextBlock control. Text in the TextBlock is clearly displayed with 0 degree rotation. But if i rotated the control to 90 degree using LayoutTransform, text is not clear. some blurry ...
0
votes
0answers
155 views

Using LayoutTransform to zoom in SurfaceScrollViewer and keeping the ManipulationOrigin

I am implemnting a pinch to zoom functionallty on list of DocumentPageView as following: <xs:SurfaceScrollViewer x:Name="_tv_scrollviewer_" CanContentScroll="True" Focusable="false" ...
0
votes
1answer
59 views

One ScaleTransform to a group of layers

Here's what I want to do - given a couple of [image] layers inside a scrollviewer, I'd like to apply the same scaling factor to all layers. In Xaml, I have a scroll viewer that hosts a grid that ...
0
votes
1answer
535 views

Apply LayoutTransform to DataGridTextColumn

I've got a DataGrid containing some DataGridTextColumns and would like to apply a simple LayoutTransform to the cells, but not the header. Problem is, DataGridTextColumn does not offer ...
0
votes
1answer
423 views

Using multiple LayoutTransforms in one Control (Grid View Header) in WPF

I am trying to build a grid of items, all dynamically (rows and columns) generated. I have a listview and gridview. I get all of the columns, and add them to the gridview. I then add all my rows to a ...
0
votes
2answers
1k views

scale animation for wpf popup

I have a nice little popup, when it shows, I d'like it to growth from 0 to 1x scaley, but I don't get it right, when I click multiple times, it looks like i "catch" the animation at various states ...
0
votes
1answer
1k views

Exception animating a scale layout transform in WPF

I have create a storyboard in C# to animation a scale transform on a canvas. The scale transform is a layout transform. Here is my C# code for the animation: Storyboard Configuring = new ...
0
votes
1answer
4k views

WPF - Confusing DataTrigger/DoubleAnimation behaviour

I'm trying to animate the ScaleY property of a LayoutTransform based on a DataTrigger bound to a boolean on my ViewModel class. The animation happens when the value is first seen to be false by the ...