gpt4 book ai didi

xamarin - 无法在 Xamarin.Mac 中的 NSButton 上触发鼠标输入

转载 作者:行者123 更新时间:2023-12-03 17:08:46 24 4
gpt4 key购买 nike

我正在尝试以编程方式将 MouseEntered 事件添加到自定义 NSButton 类,但我似乎无法让它触发。我正在 Visual Studio for Mac 中使用 Xamarin.Mac 编写 Mac OS 应用程序。我需要在代码中添加事件,因为我正在动态创建按钮。

这是我的 ViewController,其中正在创建这些按钮。它们在底部附近的 DrawHexMap 方法中实例化。

public partial class MapController : NSViewController
{
public MapController (IntPtr handle) : base (handle)
{
}

public override void ViewDidLoad()
{
base.ViewDidLoad();

DrawHexMap();
}

partial void GoToHex(Foundation.NSObject sender)
{
string[] coordinateStrings = ((NSButton)sender).Title.Split(',');

Hex chosenHex = HexRepo.GetHex(coordinateStrings[0], coordinateStrings[1]);
HexService.currentHex = chosenHex;

NSTabViewController tp = (NSTabViewController)ParentViewController;
tp.TabView.SelectAt(1);
}

private void DrawHexMap()
{
double height = 60;

for (int x = 0; x < 17; x++) {

for (int y = 0; y < 13; y++) {
HexButton button = new HexButton(x, y, height);

var handle = ObjCRuntime.Selector.GetHandle("GoToHex:");
button.Action = ObjCRuntime.Selector.FromHandle(handle);
button.Target = this;

View.AddSubview(button);
}
}

}
}

这是自定义按钮类。

public class HexButton : NSButton
{
public NSTrackingArea _trackingArea;

public HexButton(int x, int y, double height)
{
double width = height/Math.Sqrt(3);
double doubleWidth = width * 2;
double halfHeight = height/2;
double columnNudge = decimal.Remainder(x, 2) == 0 ? 0 : halfHeight;

Title = x + "," + y;
//Bordered = false;
//ShowsBorderOnlyWhileMouseInside = true;

SetFrameSize(new CGSize(width, height));
SetFrameOrigin(new CGPoint(width + (x * doubleWidth), (y * height) + columnNudge));

_trackingArea = new NSTrackingArea(Frame, NSTrackingAreaOptions.ActiveInKeyWindow | NSTrackingAreaOptions.MouseEnteredAndExited, this, null);
AddTrackingArea(_trackingArea);
}

public override void MouseEntered(NSEvent theEvent)
{
base.MouseEntered(theEvent);

Console.WriteLine("mouse enter");
}
}

正如您所看到的,我正在为按钮创建一个跟踪区域并将其添加到构造函数中。但我似乎无法让 MouseEntered 触发。我知道此类中的 MouseEntered 重写有效,因为当我直接从代码中调用 button.MouseEntered() 时,该方法会触发。

我尝试过的其他一些事情包括:注释掉在 ViewController 中设置 Action 和 Target 的行,以防它们以某种方式覆盖 MouseEntered 处理程序。在 HexButton 构造函数中设置这些值,以便目标是按钮而不是 ViewController。将 MouseEntered 覆盖放在 ViewController 而不是按钮类中。将按钮作为 subview 添加到 ViewController 后创建跟踪区域。这些都没有产生任何影响。

任何帮助将不胜感激!找到 Xamarin.Mac 的文档非常困难...

谢谢!

最佳答案

您将添加Frame作为跟踪区域,但您将跟踪区域附加到从中创建区域的 View ,因此您需要跟踪边界 坐标。

_trackingArea = new NSTrackingArea(Bounds, NSTrackingAreaOptions.ActiveInKeyWindow | NSTrackingAreaOptions.MouseEnteredAndExited, this, null);

注意:如果您从要添加按钮的 View 进行跟踪,那么您需要跟踪“框架”,因为它的跟踪区域是相对于被跟踪的 View ,而不是其 subview 。

关于xamarin - 无法在 Xamarin.Mac 中的 NSButton 上触发鼠标输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61659881/

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