8 overrides of GetPreferredSize
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.cs (1)
276protected override Size GetPreferredSize(
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (1)
635protected override Size GetPreferredSize(
System\Windows\Forms\Controls\DataGridView\DataGridViewColumnHeaderCell.cs (1)
476protected override Size GetPreferredSize(
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (1)
1159protected override Size GetPreferredSize(
System\Windows\Forms\Controls\DataGridView\DataGridViewImageCell.cs (1)
395protected override Size GetPreferredSize(
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (1)
533protected override Size GetPreferredSize(
System\Windows\Forms\Controls\DataGridView\DataGridViewRowHeaderCell.cs (1)
506protected override Size GetPreferredSize(
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxCell.cs (1)
385protected override Size GetPreferredSize(
4 references to GetPreferredSize
System.Windows.Forms (3)
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (3)
2290return GetPreferredSize(screen, dataGridViewCellStyle, rowIndex, new Size(width, 0)).Height; 2302return GetPreferredSize(screen, dataGridViewCellStyle, rowIndex, Size.Empty); 2345return GetPreferredSize(screen, dataGridViewCellStyle, rowIndex, new Size(0, height)).Width;
System.Windows.Forms.Tests (1)
System\Windows\Forms\DataGridViewCellTests.cs (1)
6613public new Size GetPreferredSize(Graphics graphics, DataGridViewCellStyle cellStyle, int rowIndex, Size constraintSize) => base.GetPreferredSize(graphics, cellStyle, rowIndex, constraintSize);