Cocoa 基于文档的应用程序中的更改窗口

发布于 2024-10-23 17:30:40 字数 181 浏览 1 评论 0原文

我在基于 Cocoa-Document 的应用程序中有一个窗口。我想让这个应用程序没有标题栏。我知道如何在常规 Cocoa 应用程序中执行此操作,因为在基于 Cocoa-Document 的应用程序中有一个名为“窗口”的窗口,我没有看到任何窗口声明。所以我的问题是如何在 Cocoa Document_based 应用程序中制作无边框窗口? 谢谢

I have one window in a Cocoa-Document based application. I want to make this application have no titlebar. I know how to do this in a regular Cocoa app because there is a window called "window" in Cocoa-Document based apps I don't see any window declarations. So my question is how to I make a borderless window in a Cocoa Document_based app?
Thanks

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

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

发布评论

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

评论(2

寻找一个思念的角度 2024-10-30 17:30:40

查看文档的 nib 文件。在基于文档的应用程序中,这通常称为“MyDocument.xib”。您可以扔掉旧窗户并用您喜欢的类型替换它。只需记住将其连接到文件所有者中适当的插座即可。

Look in the document's nib file. In a document-based application, this is often called "MyDocument.xib". You can get rid of the old window and replace it with the type you prefer. Just remember to connected it to the appropriate outlet in File's Owner.

物价感观 2024-10-30 17:30:40

NSDocument [子类] 在文档和文档窗口之间有一个 NSWindowController。通常,您可以在 NSWindowController 中进行子类化,例如创建一个具有多个窗口的文档。

在这种情况下,您可能会子类化 NSWindowController 来自定义窗口的创建。或者,您可以对 NSWindow 进行子类化,并让您的文档使用您的子类而不是通用的 NSWindow

请参阅基于文档的应用程序指南。 FAQ 包含有关子类化和 NSWindowController 角色的概述信息。

An NSDocument [subclass] has an NSWindowController between the document and the document's window. Typically, you'd subclass in NSWindowController to, say, create a document that has multiple windows.

In this case, you'll likely subclass NSWindowController to customize the creation of your window. Or you could subclass NSWindow and have your document use your subclass instead of the generic NSWindow.

See the Document-Based Application guide. The FAQ contains overview information on subclassing and the role of NSWindowController.

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