11 references to LOGFONT
System.Windows.Forms (6)
System\Windows\Forms\Dialogs\CommonDialogs\FontDialog.cs (3)
312LOGFONT logFont = default; 425UpdateFont(ref Unsafe.As<LOGFONTW, LOGFONT>(ref logFont)); 463private void UpdateFont(ref LOGFONT lf)
System\Windows\Forms\SystemInformation.cs (2)
156return Font.FromLogFont(Unsafe.AsRef<LOGFONT>((LOGFONT*)&data.lfMenuFont));
System\Windows\Forms\VisualStyles\VisualStyleRenderer.cs (1)
537_lastHResult = PInvoke.GetThemeFont(this, hdc, Part, State, (int)prop, out LOGFONT logfont);
System.Windows.Forms.Primitives (5)
System\Drawing\FontExtensions.cs (4)
13font.ToLogFont(out LOGFONT logFont); 14return Unsafe.As<LOGFONT, LOGFONTW>(ref logFont); 19font.ToLogFont(out LOGFONT logFont, graphics); 20return Unsafe.As<LOGFONT, LOGFONTW>(ref logFont);
Windows\Win32\PInvoke.GetThemeFont.cs (1)
11public static unsafe HRESULT GetThemeFont<T>(T hTheme, HDC hdc, int iPartId, int iStateId, int iPropId, out LOGFONT pFont)