14 references to idealCheckSize
System.Windows.Forms (14)
winforms\Managed\System\WinForms\DataGridBoolColumn.cs (14)
156return new Rectangle(bounds.X +((bounds.Width - idealCheckSize) /2), 157bounds.Y +((bounds.Height - idealCheckSize) / 2), 158bounds.Width < idealCheckSize ? bounds.Width : idealCheckSize, 159idealCheckSize); 161return new Rectangle(Math.Max(0,bounds.X +((bounds.Width - idealCheckSize) /2)), 162Math.Max(0,bounds.Y +((bounds.Height - idealCheckSize) / 2)), 163bounds.Width < idealCheckSize ? bounds.Width : idealCheckSize, 164idealCheckSize); 218return new Size(idealCheckSize+2, idealCheckSize+2); 227return idealCheckSize+2; 238return idealCheckSize + 2;