KMSegmentedBox.swift 268 B

123456789101112131415161718
  1. //
  2. // KMSegmentedBox.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by wanjun on 2022/12/9.
  6. //
  7. import Cocoa
  8. @objcMembers class KMSegmentedBox: NSBox {
  9. override func draw(_ dirtyRect: NSRect) {
  10. super.draw(dirtyRect)
  11. // Drawing code here.
  12. }
  13. }