| 1234567891011121314151617 |
- //
- // Created by Dan Walmsley on 05/05/2022.
- // Copyright (c) 2022 Avalonia. All rights reserved.
- //
- #pragma once
- #import <Foundation/Foundation.h>
- #include "avalonia-native.h"
- @interface AutoFitContentView : NSView
- -(AutoFitContentView* _Nonnull) initWithContent: (NSView* _Nonnull) content;
- -(void) ShowTitleBar: (bool) show;
- -(void) SetTitleBarHeightHint: (double) height;
- -(void) ShowBlur: (bool) show;
- @end
|