1 instantiation of BitmapHandle
WindowsBase (1)
Shared\MS\Win32\NativeMethodsOther.cs (1)
326
return new
BitmapHandle
(ownsHandle)
15 references to BitmapHandle
WindowsBase (15)
Base\System\Windows\SplashScreen.cs (2)
42
private NativeMethods.
BitmapHandle
_hBitmap;
174
private IntPtr CreateWindow(NativeMethods.
BitmapHandle
hBitmap, int width, int height, bool topMost)
Shared\MS\Win32\NativeMethodsOther.cs (3)
251
public
BitmapHandle
hbmMask = null;
252
public
BitmapHandle
hbmColor = null;
324
internal static
BitmapHandle
CreateFromHandle(IntPtr hbitmap, bool ownsHandle=true)
Shared\MS\Win32\UnsafeNativeMethodsCLR.cs (7)
302
public static extern IntPtr SelectObject(HandleRef hdc, NativeMethods.
BitmapHandle
obj);
1840
private static extern NativeMethods.
BitmapHandle
PrivateCreateDIBSection(HandleRef hdc, ref NativeMethods.BITMAPINFO bitmapInfo, int iUsage, ref IntPtr ppvBits, SafeFileMappingHandle hSection, int dwOffset);
1845
internal static NativeMethods.
BitmapHandle
CreateDIBSection(HandleRef hdc, ref NativeMethods.BITMAPINFO bitmapInfo, int iUsage, ref IntPtr ppvBits, SafeFileMappingHandle hSection, int dwOffset)
1853
NativeMethods.
BitmapHandle
hBitmap = PrivateCreateDIBSection(hdc, ref bitmapInfo, iUsage, ref ppvBits, hSection, dwOffset);
1870
private static extern NativeMethods.
BitmapHandle
PrivateCreateBitmap(int width, int height, int planes, int bitsPerPixel, byte[] lpvBits);
1875
internal static NativeMethods.
BitmapHandle
CreateBitmap(int width, int height, int planes, int bitsPerPixel, byte[] lpvBits)
1877
NativeMethods.
BitmapHandle
hBitmap = PrivateCreateBitmap(width, height, planes, bitsPerPixel, lpvBits);
Shared\MS\Win32\UnsafeNativeMethodsOther.cs (3)
93
public static extern bool CreateCaret(HandleRef hwnd, NativeMethods.
BitmapHandle
hbitmap, int width, int height);
969
piconinfo.hbmMask = NativeMethods.
BitmapHandle
.CreateFromHandle(iconInfoImpl.hbmMask);
970
piconinfo.hbmColor = NativeMethods.
BitmapHandle
.CreateFromHandle(iconInfoImpl.hbmColor);