11 writes to Sorted
System.Windows.Forms (3)
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (1)
660dataGridViewCell.Sorted = Sorted;
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxColumn.cs (2)
474ComboBoxCellTemplate.Sorted = value; 487dataGridViewCell.Sorted = value;
System.Windows.Forms.Tests (8)
System\Windows\Forms\DataGridViewComboBoxCell.ObjectCollectionTests.cs (6)
50_comboBoxCell.Sorted = true; 87_comboBoxCell.Sorted = true; 170_comboBoxCell.Sorted = sorted; 183_comboBoxCell.Sorted = sorted; 283_comboBoxCell.Sorted = sorted; 303_comboBoxCell.Sorted = sorted;
System\Windows\Forms\DataGridViewComboBoxCellTests.cs (2)
146_dataGridViewComboBoxCell.Sorted = true; 155Exception? sortedWithDataSourceException = Record.Exception(() => _dataGridViewComboBoxCell.Sorted = true);
12 references to Sorted
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (3)
415if (value == Sorted) 660dataGridViewCell.Sorted = Sorted; 1297comboBox.Sorted = Sorted;
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.ObjectCollection.cs (4)
63if (_owner.Sorted) 115if (_owner.Sorted) 139if (_owner.Sorted) 226if (_owner.Sorted)
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxColumn.cs (1)
465return ComboBoxCellTemplate.Sorted;
System.Windows.Forms.Tests (4)
System\Windows\Forms\DataGridViewComboBoxCellTests.cs (2)
141_dataGridViewComboBoxCell.Sorted.Should().BeFalse(); 147_dataGridViewComboBoxCell.Sorted.Should().BeTrue();
System\Windows\Forms\DataGridViewComboBoxColumnTests.cs (2)
299((DataGridViewComboBoxCell)_dataGridViewComboBoxColumn.CellTemplate!).Sorted.Should().BeTrue(); 318cell.Sorted.Should().BeTrue();