2 writes to _isRowCollection
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\StyleEditorForm.cs (2)
88
_isRowCollection
= isRowCollection;
630
_isRowCollection
= _columnsOrRowsComboBox.SelectedIndex != 0;
17 references to _isRowCollection
System.Windows.Forms.Design (17)
System\Windows\Forms\Design\StyleEditorForm.cs (17)
549
_columnsOrRowsComboBox.SelectedIndex =
_isRowCollection
? 1 : 0;
577
string baseName =
_isRowCollection
? "Row" : "Column"; // these should not be localized
579
int styleCount =
_isRowCollection
? _tableLayoutPanel.RowStyles.Count : _tableLayoutPanel.ColumnStyles.Count;
586
if (
_isRowCollection
)
624
_columnsAndRowsListView.Items[i].SubItems[MemberIndex].Text = (
_isRowCollection
? "Row" : "Column") + (i + 1).ToString(CultureInfo.InvariantCulture);
661
if (
_isRowCollection
)
679
type =
_isRowCollection
? _tableLayoutPanel.RowStyles[index].SizeType : _tableLayoutPanel.ColumnStyles[index].SizeType;
680
value =
_isRowCollection
? _tableLayoutPanel.RowStyles[index].Height : _tableLayoutPanel.ColumnStyles[index].Width;
684
if (type != (
_isRowCollection
? _tableLayoutPanel.RowStyles[index].SizeType : _tableLayoutPanel.ColumnStyles[index].SizeType))
690
if (value != (
_isRowCollection
? _tableLayoutPanel.RowStyles[index].Height : _tableLayoutPanel.ColumnStyles[index].Width))
818
_tableLayoutPanelDesigner.InsertRowCol(
_isRowCollection
, index);
820
string member =
_isRowCollection
852
_tableLayoutPanelDesigner.FixUpControlsOnInsert(
_isRowCollection
, _columnsAndRowsListView.SelectedIndices[0]);
875
_tableLayoutPanelDesigner.FixUpControlsOnDelete(
_isRowCollection
, index, _deleteList);
878
_tableLayoutPanelDesigner.DeleteRowCol(
_isRowCollection
, index);
881
if (
_isRowCollection
)
908
if (
_isRowCollection
)