NSButton的各种边框样式(NSBezelStyle)
2016-11-10 本文已影响389人
Calvin_Shen
button在开发中是个很常用的控件,为了美观有时我们会设置,button的BezlStyle,就是边框样式,一下是一些系统提供的button的边框样式,仅供大家参考:
typedef NS_ENUM(NSUInteger, NSBezelStyle) {
NSBezelStyleRounded = 1,
NSBezelStyleRegularSquare = 2,
NSBezelStyleDisclosure = 5,
NSBezelStyleShadowlessSquare = 6,
NSBezelStyleCircular = 7,
NSBezelStyleTexturedSquare = 8,
NSBezelStyleHelpButton = 9,
NSBezelStyleSmallSquare = 10,
NSBezelStyleTexturedRounded = 11,
NSBezelStyleRoundRect = 12,
NSBezelStyleRecessed = 13,
NSBezelStyleRoundedDisclosure = 14,
NSBezelStyleInline NS_ENUM_AVAILABLE_MAC(10_7) = 15,
};
![](https://img.haomeiwen.com/i3586248/897c661a77fd91bb.png)
![](http://upload-images.jianshu.io/upload_images/3586248-7056106b8eb8a8f8.png)
![](http://upload-images.jianshu.io/upload_images/3586248-997810250713bf4e.png)
![](http://upload-images.jianshu.io/upload_images/3586248-a8fd85a6171e9bce.png)
![](http://upload-images.jianshu.io/upload_images/3586248-aa8eae19994a48ea.png)
![](http://upload-images.jianshu.io/upload_images/3586248-207b07f13090fee2.png)
![](http://upload-images.jianshu.io/upload_images/3586248-23a1f7d34f4f8f18.png)
![](http://upload-images.jianshu.io/upload_images/3586248-2f6fc13b32ee58c7.png)
![](http://upload-images.jianshu.io/upload_images/3586248-24c8a79638a79153.png)
![](http://upload-images.jianshu.io/upload_images/3586248-8d5a6cdcae83be20.png)
![](http://upload-images.jianshu.io/upload_images/3586248-492aabc03177abc2.png)
![](http://upload-images.jianshu.io/upload_images/3586248-379df0634cad4fb1.png)
![](http://upload-images.jianshu.io/upload_images/3586248-c7d573df3f00046f.png)