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; 577string baseName = _isRowCollection ? "Row" : "Column"; // these should not be localized 579int styleCount = _isRowCollection ? _tableLayoutPanel.RowStyles.Count : _tableLayoutPanel.ColumnStyles.Count; 586if (_isRowCollection) 624_columnsAndRowsListView.Items[i].SubItems[MemberIndex].Text = (_isRowCollection ? "Row" : "Column") + (i + 1).ToString(CultureInfo.InvariantCulture); 661if (_isRowCollection) 679type = _isRowCollection ? _tableLayoutPanel.RowStyles[index].SizeType : _tableLayoutPanel.ColumnStyles[index].SizeType; 680value = _isRowCollection ? _tableLayoutPanel.RowStyles[index].Height : _tableLayoutPanel.ColumnStyles[index].Width; 684if (type != (_isRowCollection ? _tableLayoutPanel.RowStyles[index].SizeType : _tableLayoutPanel.ColumnStyles[index].SizeType)) 690if (value != (_isRowCollection ? _tableLayoutPanel.RowStyles[index].Height : _tableLayoutPanel.ColumnStyles[index].Width)) 818_tableLayoutPanelDesigner.InsertRowCol(_isRowCollection, index); 820string member = _isRowCollection 852_tableLayoutPanelDesigner.FixUpControlsOnInsert(_isRowCollection, _columnsAndRowsListView.SelectedIndices[0]); 875_tableLayoutPanelDesigner.FixUpControlsOnDelete(_isRowCollection, index, _deleteList); 878_tableLayoutPanelDesigner.DeleteRowCol(_isRowCollection, index); 881if (_isRowCollection) 908if (_isRowCollection)