1

我正在关注本教程,该教程解释了如何使用 XAML/C# 在 Visual Studio 中创建拨号。问题是本教程针对的是 Windows 8 商店应用程序。

知道了这一点,我仍然尝试在 WPF 应用程序中使用本教程,该应用程序也将支持以前的操作系统。

我遇到了一些兼容性问题:

  1. ManipulationMode="All"不存在,因为本教程的作者为我使用它。它只存在,因为Manipulation.ManipulationMode="All"它给了我一个错误“在指定元素上没有激活操作”。我该如何解决?
  2. 作者ManipulationDelta在元素上设置了属性grid,一开始我没有问题......直到我意识到作者的由VS创建的事件/动作代码隐藏使用ManipulationDeltaRoutedEventArgs e而不是ManipulationDeltaEventArgs e在我的代码隐藏文件中使用。这意味着我不能使用Position属性 ( e.Position) 来轻松获取用户控件上的鼠标位置。有什么可以替代它的?我不认为它可以被支持,因为它被声明为仅 Win8 ......
  3. 在 MVVM 样式的应用程序中,代码隐藏操作将设置在ViewModel. 我如何将该操作代码“绑定”到ManipulationDelta元素的属性?

提前致谢!

附言; 我的和作者的 VS 版本都是 2012,所以这不是问题。

更新:这是部分完成的代码:

XAML:

//Manipulation.ManipulationMode="All" => ERROR 'Manipulation is not active on the specified element'
<Grid Manipulation.ManipulationMode="All" ManipulationDelta="Grid_ManipulationDelta_1">
    <Ellipse Fill="#FF7171E6" Margin="30"/>
    <Grid>
        <Grid.RenderTransform>
            <RotateTransform CenterX="225" CenterY="225" Angle="{Binding Angle}"/>
        </Grid.RenderTransform>
        <Ellipse Fill="White" Height="100" VerticalAlignment="Top" Margin="50" Width="100"/>

    </Grid>
</Grid>

代码隐藏:

public partial class dial : UserControl, INotifyPropertyChanged
{
    private int m_Amount;
    public int Amount {...}

    private double m_Angle;
    public double Angle {...}

    public dial()
    {
        InitializeComponent();
        this.DataContext = this;
    }

    private void Grid_ManipulationDelta_1(object sender, ManipulationDeltaEventArgs e)
    {
        this.Angle = GetAngle(e.Position, this.RenderSize); //e.Position doesn't exist in ManipulationDeltaEventArgs...
        this.Amount = (int)(this.Angle / 360 * 100);
    }

    public enum Quadrants : int { nw = 2, ne = 1, sw = 4, se = 3 }
    private double GetAngle(Point touchPoint, Size circleSize)
    {
        var _X = touchPoint.X - (circleSize.Width / 2d);
        var _Y = circleSize.Height - touchPoint.Y - (circleSize.Height / 2d);
        var _Hypot = Math.Sqrt(_X * _X + _Y * _Y);
        var _Value = Math.Asin(_Y / _Hypot) * 180 / Math.PI;
        var _Quadrant = (_X >= 0) ?
            (_Y >= 0) ? Quadrants.ne : Quadrants.se :
            (_Y >= 0) ? Quadrants.nw : Quadrants.sw;
        switch (_Quadrant)
        {
            case Quadrants.ne: _Value = 090 - _Value; break;
            case Quadrants.nw: _Value = 270 + _Value; break;
            case Quadrants.se: _Value = 090 - _Value; break;
            case Quadrants.sw: _Value = 270 + _Value; break;
        }
        return _Value;
    }

    public event PropertyChangedEventHandler PropertyChanged;

}
4

1 回答 1

1
  1. 在 WPF 中,您可以使用 IsManipulationEnabled="true" 来启用操作。不需要像 Windows 商店应用那样使用 ManipulationMode="All"。
  2. 您可以尝试 Mouse.GetPosition(this) 获取当前鼠标位置
于 2013-10-24T08:09:04.863 回答