15 writes to checkSize
System.Windows.Forms (15)
winforms\Managed\System\WinForms\ButtonInternal\ButtonBaseAdapter.cs (2)
1521layout.checkSize = 0; 1547layout.checkSize = 0;
winforms\Managed\System\WinForms\ButtonInternal\CheckableControlBaseAdapter.cs (1)
73layout.checkSize = standardCheckSize;
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxFlatAdapter.cs (1)
90layout.checkSize = (int)(flatCheckSize * GetDpiScaleRatio(e.Graphics));
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxPopupAdapter.cs (4)
124layout.checkSize = (int)(checkSize * GetDpiScaleRatio(g, control) + 1); 127layout.checkSize = (int)(checkSize * GetDpiScaleRatio(g, control)); 138layout.checkSize = (int)(flatCheckSize * GetDpiScaleRatio(e.Graphics) + 1); 141layout.checkSize = (int)(flatCheckSize * GetDpiScaleRatio(e.Graphics));
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxStandardAdapter.cs (3)
114layout.checkSize = CheckBoxRenderer.GetGlyphSize(g, CheckBoxRenderer.ConvertFromButtonState(GetState(), true, Control.MouseIsOver), Control.HandleInternal).Width; 120layout.checkSize = Control.LogicalToDeviceUnits(layout.checkSize); 123layout.checkSize = (int)(layout.checkSize * 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 (2)
75layout.checkSize = RadioButtonRenderer.GetGlyphSize(g, RadioButtonRenderer.ConvertFromButtonState(GetState(), b.MouseIsOver), b.HandleInternal).Width; 80layout.checkSize = (int)(layout.checkSize * GetDpiScaleRatio(e.Graphics));
winforms\Managed\System\WinForms\ToolStripItem.cs (1)
4706layoutOptions.checkSize = 0;
4 references to checkSize
System.Windows.Forms (4)
winforms\Managed\System\WinForms\ButtonInternal\ButtonBaseAdapter.cs (1)
1189return checkSize + checkPaddingSize;
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxStandardAdapter.cs (2)
120layout.checkSize = Control.LogicalToDeviceUnits(layout.checkSize); 123layout.checkSize = (int)(layout.checkSize * GetDpiScaleRatio(e.Graphics));
winforms\Managed\System\WinForms\ButtonInternal\RadioButtonStandardAdapter.cs (1)
80layout.checkSize = (int)(layout.checkSize * GetDpiScaleRatio(e.Graphics));