Skip to content

Commit 737b9ad

Browse files
committed
Add IWindowInfo.ExStyle
1 parent f21fcbf commit 737b9ad

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

CefSharp.Core/WindowInfo.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,18 @@ namespace CefSharp
9595
}
9696
}
9797

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+
98110
virtual property IntPtr ParentWindowHandle
99111
{
100112
IntPtr get()

CefSharp/IWindowInfo.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public interface IWindowInfo : IDisposable
1313
int Width { get; set; }
1414
int Height { get; set; }
1515
uint Style { get; set; }
16+
uint ExStyle { get; set; }
1617
IntPtr ParentWindowHandle { get; set; }
1718
bool TransparentPaintingEnabled { get; set; }
1819
bool WindowlessRenderingEnabled { get; set; }

0 commit comments

Comments
 (0)