18 references to GpSolidFill
System.Drawing.Common (6)
System\Drawing\Pen.cs (1)
601brush = new SolidBrush((GpSolidFill*)GetNativeBrush());
System\Drawing\SolidBrush.cs (5)
18GpSolidFill* nativeBrush; 30internal SolidBrush(GpSolidFill* nativeBrush) 43return new SolidBrush((GpSolidFill*)clonedBrush); 67PInvokeGdiPlus.GdipGetSolidFillColor((GpSolidFill*)NativeBrush, (uint*)&color).ThrowIfFailed(); 100PInvokeGdiPlus.GdipSetSolidFillColor((GpSolidFill*)NativeBrush, (ARGB)value).ThrowIfFailed();
System.Private.Windows.GdiPlus (12)
Windows.Win32.PInvokeGdiPlus.gdiplus.dll.g.cs (12)
1583 /// <inheritdoc cref="GdipCreateSolidFill(uint, winmdroot.Graphics.GdiPlus.GpSolidFill**)"/> 1584 internal static unsafe winmdroot.Graphics.GdiPlus.Status GdipCreateSolidFill(uint color, ref winmdroot.Graphics.GdiPlus.GpSolidFill* brush) 1586 fixed (winmdroot.Graphics.GdiPlus.GpSolidFill** brushLocal = &brush) 1594 internal static extern unsafe winmdroot.Graphics.GdiPlus.Status GdipCreateSolidFill(uint color, winmdroot.Graphics.GdiPlus.GpSolidFill** brush); 5140 /// <inheritdoc cref="GdipGetSolidFillColor(winmdroot.Graphics.GdiPlus.GpSolidFill*, uint*)"/> 5141 internal static unsafe winmdroot.Graphics.GdiPlus.Status GdipGetSolidFillColor(ref winmdroot.Graphics.GdiPlus.GpSolidFill brush, ref uint color) 5145 fixed (winmdroot.Graphics.GdiPlus.GpSolidFill* brushLocal = &brush) 5154 internal static extern unsafe winmdroot.Graphics.GdiPlus.Status GdipGetSolidFillColor(winmdroot.Graphics.GdiPlus.GpSolidFill* brush, uint* color); 7811 /// <inheritdoc cref="GdipSetSolidFillColor(winmdroot.Graphics.GdiPlus.GpSolidFill*, uint)"/> 7812 internal static unsafe winmdroot.Graphics.GdiPlus.Status GdipSetSolidFillColor(ref winmdroot.Graphics.GdiPlus.GpSolidFill brush, uint color) 7814 fixed (winmdroot.Graphics.GdiPlus.GpSolidFill* brushLocal = &brush) 7822 internal static extern unsafe winmdroot.Graphics.GdiPlus.Status GdipSetSolidFillColor(winmdroot.Graphics.GdiPlus.GpSolidFill* brush, uint color);