如何在DockMenu中配置窗口显示

时间:2017-09-20 02:52:25

标签: macos appkit

我发现DockMenu中会显示一些窗口,而不是。 如何配置AppKit? enter image description here

enter image description here

2 个答案:

答案 0 :(得分:1)

Dock菜单中的窗口列表似乎是“窗口”菜单中窗口列表的副本。将窗口的属性excludedFromWindowsMenu设置为NO / false将从“窗口”菜单和“停靠”菜单中删除该窗口。

答案 1 :(得分:-1)

已解决配置此问题 必须要标题栏 如果你想隐藏标题栏,请使用此代码

    if ([self respondsToSelector:@selector(setTitlebarAppearsTransparent:)])
        [self setTitlebarAppearsTransparent:YES];
    if ([self respondsToSelector:@selector(setTitleVisibility:)])
        [self setTitleVisibility:1];

enter image description here