12345678910111213141516171819202122 |
- //
- // KMBackgroundWindowController.swift
- // PDF Master
- //
- // Created by lizhe on 2023/11/14.
- //
- import Cocoa
- class KMBackgroundWindowController: KMBaseWindowController {
- @IBOutlet weak var addBackgroundView: KMAddBackgroundView!
- override func windowDidLoad() {
- super.windowDidLoad()
-
- // Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
-
- addBackgroundView.cancelAction = { [unowned self] view in
- cancelAction?(self)
- }
- }
- }
|