我对WPF还是很陌生,尽管我有一些Forms的经验,所以我决定最终尝试弄清楚如何使用WPF。因此,当我使用可拖动控件时,这是我想到的代码(我尝试将其更改为与WPF配合使用,但控件随处可见):

private void rectangle1_MouseMove(object sender, MouseEventArgs e)
{
    if (e.LeftButton == MouseButtonState.Pressed) {
        double x = this.Left + (double)e.GetPosition(this).X - (double)rectangle1.Margin.Left;
        double y = this.Top + (double)e.GetPosition(this).Y - (double)rectangle1.Margin.Top;
        rectangle1.Margin = new Thickness(x, y, rectangle1.Margin.Right, rectangle1.Margin.Bottom);
    }
}

最佳答案

您想使用adorners来实现拖动,调整大小,旋转等操作。

10-08 09:02