这是我的第一个问题。我从 Mac App Store 下载了一款名为 BlackWhite 的游戏。 http://itunes.apple.com/us/app/blackwhite/id420650954?mt=12 我想知道如何创建一个带有自定义标题的窗口,如应用程序。是无边框窗口吗?但它有窗口按钮...
问问题
2260 次
1 回答
4
我想知道如何创建一个带有自定义标题的窗口,如应用程序。
粗体 NSWindow 标题
- titleFont
{
return [NSFont boldSystemFontOfSize:10];
}
- (NSRect)_titlebarTitleRect
{
return NSOffsetRect([super _titlebarTitleRect], 0, -1);
}
链接:
http ://andymatuschak.org/articles/2006/01/11/making-the-hud-item-1-a-frame-themed-party
额外的 NSWindow 自定义
(如您提供的示例)
Matt Gemmell 的 TunesWindow(使用背景图像):
- http://mattgemmell.com/source/
Matt Gallagher 的自定义 NSWindow:
- http://cocoawithlove.com/2008/12/drawing-custom-window-on-mac- Rafaël Warnault 的os-x.html
DarkWindow:
- http://www.read-write.fr/blog/?p=32
NSThemeFrame 用法:
- http://parmanoir.com/Custom_NSThemeFrame
于 2011-04-16T21:41:25.820 回答