我有一个正在处理的小项目,它是移动图像的 WPF c#。
我试过了,但是不行
this.NavigationService.Refresh();
我用这个方法来改变图片的位置:
public void Move(Image target, double newX, double newY, Int32 duration)
{
dispatcher.Start();
Vector offset = VisualTreeHelper.GetOffset(target);
var top = offset.Y;
var left = offset.X;
TranslateTransform trans = new TranslateTransform();
target.RenderTransform = trans;
DoubleAnimation anim1 = new DoubleAnimation(0, newY - top, TimeSpan.FromSeconds(duration));
DoubleAnimation anim2 = new DoubleAnimation(0, newX - left, TimeSpan.FromSeconds(duration));
trans.BeginAnimation(TranslateTransform.YProperty, anim1);
trans.BeginAnimation(TranslateTransform.XProperty, anim2);
}
移动图像后,我使用以下方法更改了图像的边距:
myImage.Margin = new Thickness(newX, newY, 0, 0)
我现在想要的是添加一个按钮,在我第一次加载它时将我的程序中的所有更改重置为默认配置,但在运行时。因此,输出是当我单击按钮时,图像将返回到其默认位置。
我是一名优秀的程序员,十分优秀!