Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7421143
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T08:21:29+00:00 2026-05-29T08:21:29+00:00

I have a rectangle and on my MouseMove event I want to transform the

  • 0

I have a rectangle and on my MouseMove event I want to transform the rectangle whenever the rectangle’s width has changed.

I have code sorta like this:

private Rectangle _rectangle;

public override void OnApplyTemplate()
{
    base.OnApplyTemplate();

    _rectangle = GetTemplatedChild("PART_RangeRectangle") as Rectangle;
    if(_rectangle != null)
    {
        _rectangle.MouseMove += new MouseEventHandler(_rectangle_MouseMove);
    }
}

private void _rectangle_MouseMove(object sender, MouseEventArgs e)
{
    if(e.LeftButton == MouseButtonState.Pressed && _rectangle != null)
    { 
        _rectangle.Width += 50;
        _rectangle.RenderTransform = new TranslateTransform(-10, 0);
    }
}

My Xaml looks sorta like this:

<Grid>
    <Canvas>
        <Rectangle Name="PART_RangeRectangle" StrokeThickness="5"
            RenderTransformOrigin="0.5, 0.5" />
    <Canvas>
</Grid>

When I first trigger the MouseMove event the translation occurs as expected. But this only occurs once. I am getting into that block of code and the width of the rectangle is updating fine, but I’ve yet to figure out why the transform is not updating.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T08:21:30+00:00Added an answer on May 29, 2026 at 8:21 am

    You’re replacing the old transform with an identical transform. You need to modify the existing transform and use += like you do with Width.

    Example:

    if (_rectangle.RenderTransform is TranslateTransform)
    {
        (_rectangle.RenderTransform as TranslateTransform).X -= 10;
    }
    else _rectangle.RenderTransform = new TranslateTransform(-10, 0);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a rectangle that looks like this <Rectangle x:Name=rect Width=76 Height=76 HorizontalAlignment=Left> <Rectangle.Fill>
I have a rectangle that I've created and set its individual properties like so
I have two points (a line segment) and a rectangle. I would like to
It seems that the WPF Rectangle shape does not have the Click event defined.
I have a Rectangle within a Canvas . The rectangle has the MouseDragElementBehavior attached
I have a rectangle in my XAML and want to change its Canvas.Left property
I have a list of DrawObject[] . Each DrawObject has a Rectangle property. Here
I have a canvas onto which I draw shapes like rectangle etc. When I
Currently I have this code: selectorRect.X = (e.X + hscTileset.Value) / tileLayer.TileSize * tileLayer.TileSize;
I have a Rectangle which can be dragged within some boundaries. This works perfect

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.