3 writes to _blendFunc
WindowsBase (3)
Base\System\Windows\SplashScreen.cs (3)
228
_blendFunc
= new NativeMethods.BLENDFUNCTION();
235
memDC, sourceLocation, 0, ref
_blendFunc
, NativeMethods.ULW_ALPHA);
341
UnsafeNativeMethods.UpdateLayeredWindow(_hwnd, IntPtr.Zero, null, null, IntPtr.Zero, null, 0, ref
_blendFunc
, NativeMethods.ULW_ALPHA);
5 references to _blendFunc
WindowsBase (5)
Base\System\Windows\SplashScreen.cs (5)
229
_blendFunc
.BlendOp = NativeMethods.AC_SRC_OVER;
230
_blendFunc
.BlendFlags = 0;
231
_blendFunc
.SourceConstantAlpha = 255;
232
_blendFunc
.AlphaFormat = 1; /*AC_SRC_ALPHA*/
340
_blendFunc
.SourceConstantAlpha = (byte)(255 * progress);