7 instantiations of LOGFONT
System.Windows.Forms (7)
winforms\Managed\System\WinForms\AxHost.cs (1)
4882NativeMethods.LOGFONT logfont = new NativeMethods.LOGFONT();
winforms\Managed\System\WinForms\Control.cs (1)
18948NativeMethods.LOGFONT logFont = new NativeMethods.LOGFONT();
winforms\Managed\System\WinForms\ControlPaint.cs (1)
2067NativeMethods.LOGFONT logfont = new NativeMethods.LOGFONT();
winforms\Managed\System\WinForms\FontDialog.cs (2)
476NativeMethods.LOGFONT lf = new NativeMethods.LOGFONT(); 558NativeMethods.LOGFONT lf = new NativeMethods.LOGFONT();
winforms\Managed\System\WinForms\RichTextBox.cs (1)
2884NativeMethods.LOGFONT logfont = new NativeMethods.LOGFONT();
winforms\Managed\System\WinForms\VisualStyles\VisualStyleRenderer.cs (1)
680NativeMethods.LOGFONT logfont = new NativeMethods.LOGFONT();
25 references to LOGFONT
System.Windows.Forms (25)
winforms\Managed\System\WinForms\AxHost.cs (1)
4882NativeMethods.LOGFONT logfont = new NativeMethods.LOGFONT();
winforms\Managed\System\WinForms\Control.cs (1)
18948NativeMethods.LOGFONT logFont = new NativeMethods.LOGFONT();
winforms\Managed\System\WinForms\ControlPaint.cs (1)
2067NativeMethods.LOGFONT logfont = new NativeMethods.LOGFONT();
winforms\Managed\System\WinForms\FontDialog.cs (7)
476NativeMethods.LOGFONT lf = new NativeMethods.LOGFONT(); 558NativeMethods.LOGFONT lf = new NativeMethods.LOGFONT(); 577logFontPtr = Marshal.AllocCoTaskMem(Marshal.SizeOf(typeof(NativeMethods.LOGFONT))); 613NativeMethods.LOGFONT lfReturned = null; 614lfReturned = (NativeMethods.LOGFONT)UnsafeNativeMethods.PtrToStructure(logFontPtr, typeof(NativeMethods.LOGFONT)); 684private void UpdateFont(NativeMethods.LOGFONT lf) {
winforms\Managed\System\WinForms\NativeMethods.cs (6)
3144public LOGFONT lfCaptionFont = null; 3148public LOGFONT lfSmCaptionFont = null; 3152public LOGFONT lfMenuFont = null; 3154public LOGFONT lfStatusFont = null; 3156public LOGFONT lfMessageFont = null; 3670public LOGFONT( LOGFONT lf )
winforms\Managed\System\WinForms\RichTextBox.cs (2)
2884NativeMethods.LOGFONT logfont = new NativeMethods.LOGFONT(); 2938static private void FontToLogFont(Font value, NativeMethods.LOGFONT logfont) {
winforms\Managed\System\WinForms\SafeNativeMethods.cs (1)
805public static extern int GetThemeFont(HandleRef hTheme, HandleRef hdc, int iPartId, int iStateId, int iPropId, NativeMethods.LOGFONT pFont);
winforms\Managed\System\WinForms\UnsafeNativeMethods.cs (5)
685public static extern int GetObject(HandleRef hObject, int nSize, [In, Out] NativeMethods.LOGFONT lf); 686public static int GetObject(HandleRef hObject, NativeMethods.LOGFONT lp) { 687return GetObject(hObject, Marshal.SizeOf(typeof(NativeMethods.LOGFONT)), lp); 1038public static extern IntPtr SendMessage(HandleRef hWnd, int msg, int wParam, [In, Out] NativeMethods.LOGFONT lParam); 1194public static extern bool SystemParametersInfo(int nAction, int nParam, [In, Out] NativeMethods.LOGFONT font, int nUpdate);
winforms\Managed\System\WinForms\VisualStyles\VisualStyleRenderer.cs (1)
680NativeMethods.LOGFONT logfont = new NativeMethods.LOGFONT();