gpt4 book ai didi

c# - 方法 'GetTouchPoint' 没有重载需要 0 个参数

转载 作者:太空宇宙 更新时间:2023-11-03 20:20:00 25 4
gpt4 key购买 nike

我正在使用 PixelSense2.0 为 Sur40 开发应用程序。我正在 try catch 触摸输入,但它一直给我提供相同的错误:No overload for method 'GetTouchPoint' takes 0 arguments

到目前为止,这是我的代码:

    void SurfaceWindow1_Loaded(object sender, RoutedEventArgs e)
{


this.TouchDown += new EventHandler<TouchEventArgs>(SurfaceWindow1_TouchDown);

}

void SurfaceWindow1_TouchDown(object sender, TouchEventArgs e)
{
LoadAnimationControl2 ani1 = new LoadAnimationControl2();
ani1.Margin.Left = e.GetTouchPoint().Position.X;
ani1.Margin.Bottom = e.GetTouchPoint().Position.Y;
MainGrid.Children.Add(ani1);
}

有没有人建议如何处理这个问题?

最佳答案

GetTouchPoint() 有一个必需的输入参数。没有不使用参数的方法签名。您需要将 IInputElement 作为参数传递给该方法。

GetTouchPoint() MSDN Reference page

关于c# - 方法 'GetTouchPoint' 没有重载需要 0 个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14222387/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com