We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f21fcbf commit 737b9adCopy full SHA for 737b9ad
CefSharp.Core/WindowInfo.h
@@ -95,6 +95,18 @@ namespace CefSharp
95
}
96
97
98
+ virtual property UINT32 ExStyle
99
+ {
100
+ UINT32 get()
101
102
+ return _windowInfo->ex_style;
103
+ }
104
+ void set(UINT32 ex_style)
105
106
+ _windowInfo->ex_style = ex_style;
107
108
109
+
110
virtual property IntPtr ParentWindowHandle
111
{
112
IntPtr get()
CefSharp/IWindowInfo.cs
@@ -13,6 +13,7 @@ public interface IWindowInfo : IDisposable
13
int Width { get; set; }
14
int Height { get; set; }
15
uint Style { get; set; }
16
+ uint ExStyle { get; set; }
17
IntPtr ParentWindowHandle { get; set; }
18
bool TransparentPaintingEnabled { get; set; }
19
bool WindowlessRenderingEnabled { get; set; }
0 commit comments