我在状态栏中以图标的操作打开NSPopover
。
myPopover.show(relativeTo: button.bounds, of: button, preferredEdge: NSRectEdge.minY)
除了与弹出窗口和系统栏的距离为零之外,这种方式正常:
我希望与Dropbox应用程序获得相同的结果,该应用程序将弹出窗口移动到离系统栏很小的距离:
我尝试使用不会影响popover位置的button.bounds.offsetBy(dx: 0.0, dy: 20.0)
以及将popover置于系统栏上方的button.bounds.offsetBy(dx: 0.0, dy: -20.0)
:
那么如何将NSPopover
定位在离系统栏一定距离的位置?
答案 0 :(得分:4)
首先,button.bounds.offsetBy(dx: 0.0, dy: -20.0)
不起作用的原因是因为那些坐标落在状态栏本身的状态栏项目的“窗口”之外。因此,除此之外的任何东西都被裁掉了。
我通过在这里和那里收集信息解决了这个问题:
NSPopover
,而不是状态栏项目。红色的东西是不可见的窗口(用于演示目的)。
// Create a window
let invisibleWindow = NSWindow(contentRect: NSMakeRect(0, 0, 20, 5), styleMask: .borderless, backing: .buffered, defer: false)
invisibleWindow.backgroundColor = .red
invisibleWindow.alphaValue = 0
if let button = statusBarItem.button {
// find the coordinates of the statusBarItem in screen space
let buttonRect:NSRect = button.convert(button.bounds, to: nil)
let screenRect:NSRect = button.window!.convertToScreen(buttonRect)
// calculate the bottom center position (10 is the half of the window width)
let posX = screenRect.origin.x + (screenRect.width / 2) - 10
let posY = screenRect.origin.y
// position and show the window
invisibleWindow.setFrameOrigin(NSPoint(x: posX, y: posY))
invisibleWindow.makeKeyAndOrderFront(self)
// position and show the NSPopover
mainPopover.show(relativeTo: invisibleWindow.contentView!.frame, of: invisibleWindow.contentView!, preferredEdge: NSRectEdge.minY)
NSApp.activate(ignoringOtherApps: true)
}
我尝试使用show(relativeTo: invisibleWindow.frame ...)
并且弹出窗口没有显示,因为NSWindow
不是NSView
。要显示弹出窗口,必须传递视图。