DragMove是如何工作的?(它改变了哪些属性?)
本文关键字:改变 属性 工作 DragMove 何工作 | 更新日期: 2023-09-27 18:02:55
我正在WPF中制作一个简单的窗口(如Overwolf),在Overwolf中,屏幕左上角有一个圆圈,当你拖动它时,它会以简单的动画移动回角落。所以我试着在LeftProperty上使用DoubleAnimation来达到同样的效果,但它只工作一次(第一次你拖动它的工作, 第二次它只是停留在你拖动它的地方)。
我的XAML:
<Window x:Class="Overwoof.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow"
Name="Main"
Width="200"
Height="200"
AllowsTransparency="True"
WindowStyle='None'
IsHitTestVisible="True"
Topmost="True"
Background="Transparent"
MouseLeftButtonUp="onDragLeave"
WindowStartupLocation="Manual">
<Grid IsHitTestVisible="True" Name="mainGrid" MinHeight="200" MinWidth="200">
<Ellipse MouseLeftButtonDown="DragStart" Name="logo" Width="100" Height="100" Fill="Red" Opacity="0.5" Margin="12,24,66,37" IsManipulationEnabled="True" />
</Grid>
My c# code:
private void DragStart(object sender, MouseEventArgs e)
{
Main.DragMove();
}
private void onDragLeave(object sender, MouseEventArgs e)
{
DoubleAnimation da = new DoubleAnimation();
da.From = Main.Left;
da.To = -20;
da.Duration = new Duration(TimeSpan.FromSeconds(0.2));
da.Completed += new EventHandler(AnimationCompleted);
Main.BeginAnimation(Window.LeftProperty, da);
}
Thx BBLN。
change da.To = -20;
to da.To -= 20;