8 references to GetDpiScaleRatio
System.Windows.Forms (8)
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxFlatAdapter.cs (1)
90layout.checkSize = (int)(flatCheckSize * GetDpiScaleRatio(e.Graphics));
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxPopupAdapter.cs (2)
138layout.checkSize = (int)(flatCheckSize * GetDpiScaleRatio(e.Graphics) + 1); 141layout.checkSize = (int)(flatCheckSize * GetDpiScaleRatio(e.Graphics));
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxStandardAdapter.cs (1)
123layout.checkSize = (int)(layout.checkSize * GetDpiScaleRatio(e.Graphics));
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonBaseAdapter.cs (2)
74double scale = GetDpiScaleRatio(e.Graphics); 141double scale = GetDpiScaleRatio(e.Graphics);
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonFlatAdapter.cs (1)
90layout.checkSize = (int)(flatCheckSize * GetDpiScaleRatio(e.Graphics));
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonStandardAdapter.cs (1)
80layout.checkSize = (int)(layout.checkSize * GetDpiScaleRatio(e.Graphics));