自定义 Cocoas NSFontPanel

发布于 2024-08-28 06:58:09 字数 149 浏览 8 评论 0原文

Cocoas NSFontPanel 有哪些自定义选项?

iWork Pages 中可访问的 NSFontPanel 顶部有“文本下划线”、“文本删除线”和“文档颜色”控件。我们不希望这些出现在我们的 NSFontPanel 中。有什么方法可以删除或禁用这些控件吗?

What customization options are there for Cocoas NSFontPanel?

The NSFontPanel accessible in iWork Pages has "Text Underline", "Text Strikethrough" and "Document Color" controls at the top. We don't want these in our NSFontPanel. Is there any way to remove or disable these controls?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

耳钉梦 2024-09-04 06:58:09

在相关响应程序中实施NSFontPanelValidation 协议 (s)。

Implement the NSFontPanelValidation protocol in the relevant responder(s).

还如梦归 2024-09-04 06:58:09

正如您所说,响应者必须实现 NSFontPanelValidation 协议并重写 - (NSUInteger)validModesForFontPanel:(NSFontPanel *)fontPanel 方法。但是当 NSFontPanel 显示时不会调用此方法。

Like you said, the responder must implement the NSFontPanelValidation protocol and override the - (NSUInteger)validModesForFontPanel:(NSFontPanel *)fontPanel method. But this method does not invoked when the NSFontPanel showed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文