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 move your mouse from the starting location the larger the increase in size becomes.

I expect its the way I calculate the scale to be applied. Here is the code:

private void ResizeGrip_MouseDown(object sender, MouseButtonEventArgs e)
{
    ResizeHandle.CaptureMouse();

    //Get the initial coordinate cursor location on the window
    initBtmX = e.GetPosition(this).X;

    bottomResize = true;
}

private void ResizeGrip_MouseUp(object sender, MouseButtonEventArgs e)
{
    bottomResize = false;
    ResizeHandle.ReleaseMouseCapture();
}

private void ResizeGrip_MouseMove(object sender, MouseEventArgs e)
{
    if( bottomResize == true)
    {
        //Get the new Y coordinate cursor location
        double newBtmX = e.GetPosition(this).X;


        //Get the smallest change between the initial and new cursor location
        double diffX = initBtmX - newBtmX;

        // Let our rectangle capture the mouse
        ResizeHandle.CaptureMouse();

        double newWidth = e.GetPosition(this).X - diffX;

        double scaler = newWidth / ResizeContainer.ActualWidth;

        Console.WriteLine("newWidth: {0}, scalar: {1}", newWidth, scaler);


        if (scaler < 0.75 || scaler > 3)
            return;

        ScaleTransform scale = new ScaleTransform(scaler, scaler);

        ResizeContainer.LayoutTransform = scale;
    }
}

Update: Now with XAML

<wtk:IToolDialog x:Name="VideoPlayer" ParentControl="{Binding ElementName=Stage}" DialogTitle="Video Player" Margin="90,5,0,0">
    <Grid> 
        <Grid x:Name="ResizeContainer" ClipToBounds="True" Width="320" Height="240" HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="0,0,0,1">
            <!-- The video frame -->
            <Image Stretch="Fill" Source="{Binding CurrentFrameImage}" x:Name="VideoImage" />
            <Grid>
                <pplcontrols:VideoGroundPlane Foreground="Black" GridSize="20" GroundPlane="{Binding GroundPlane}">
                </pplcontrols:VideoGroundPlane>
            </Grid>
            <Grid x:Name="HitMask" IsHitTestVisible="False"/>
        </Grid>
        <ResizeGrip Cursor="SizeNWSE" x:Name="ResizeHandle" VerticalAlignment="Bottom" HorizontalAlignment="Right" Mouse.MouseDown="ResizeGrip_MouseDown" Mouse.MouseUp="ResizeGrip_MouseUp" Mouse.MouseMove="ResizeGrip_MouseMove"></ResizeGrip>
    </Grid>
</wtk:IToolDialog>
link|improve this question

Where are the other controls placed? Are they inside the usercontrol you are resizing? Can you post some more code to clarify? – Jakob Christensen Jun 8 '10 at 14:13
I updated my code. I am not sure what you mean when you say that the child controls are not scaling? :-) – Jakob Christensen Jun 8 '10 at 16:25
feedback

1 Answer

up vote 0 down vote accepted

Any reason why you are not using ResizeContainer.RenderTransfrom instead of ResizeContainer.LayoutTransform? I.e. use

ResizeContainer.LayoutTransform = scale;

If you want the scale to be linear I think you should use

double scaler = 1 - diff / ResizeContainer.ActualWidth;

EDIT:

There is a bug in the code that causes the scaled control to "jump" in size if you try to resize more than once. I suggest you do the following:

Add a RenderTransform to your ResizeContainer grid:

<Grid.RenderTransform>
    <ScaleTransform x:Name="transform" ScaleX="1" ScaleY="1" />
</Grid.RenderTransform>

Change the code in your MouseMove event handler to the following:

if (bottomResize)
{
    double newBtmX = e.GetPosition(this).X;
    double scaler = -(initBtmX - newBtmX) / grid1.ActualWidth;
    initBtmX = newBtmX;

    transform.ScaleX += scaler;
    transform.ScaleY += scaler;
}

This way you change the scale by whatever small amount the mouse has moved while dragging. All child controls within the grid should scale as well.

link|improve this answer
I used LayoutTransform as I wanted all children to resize also, is there a way to do this nicely with RenderTransform? – Chris Jun 8 '10 at 13:14
Update: I just tried RenderTransform with the new scaler equation and it worked perfectly... All I need now is for the other controls to scale along with it? – Chris Jun 8 '10 at 13:19
Where are the other controls placed? Are they inside the usercontrol you are resizing? Can you post some more code to clarify? – Jakob Christensen Jun 8 '10 at 13:33
Updated with xaml - thanks – Chris Jun 8 '10 at 15:24
All controls within ResizeContainer should scale when applying the RenderTransform to the grid. Is that not the case? – Jakob Christensen Jun 8 '10 at 16:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.