简体   繁体   中英

Get image position (windows store apps, xaml , c#)

I'm writing an app for windows phone and i need to get the location/position of the image that the user moves.

var Pic= (CompositeTransform)MovingImage.RenderTransform;
            Pic.TranslateX += (e.Delta.Translation.X/2);
            Pic.TranslateY += (e.Delta.Translation.Y/2);

that's the code im using to move the picture and i need to check when it "touches" another picture , for that , i need to check the position of the picture, can someone help me with that ? thanks to the helpers

Maybe use the the Canvas.GetLeft Canvas.GetTop Canvas.GetBottom and Canvas.GetRight assuming that you are using the Image inside a Canvas.

Check the MSDN here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM