14 references to AllowNavigation
System.Windows.Forms (14)
winforms\Managed\System\WinForms\DataGrid.cs (6)
2465if (AllowNavigation != value) { 6943if (!AllowNavigation) { 6947caption.BackButtonActive = (parentRows.GetTopParent() != null) && AllowNavigation; 6971if (!AllowNavigation) 6986if (!AllowNavigation) 7064caption.BackButtonActive = AllowNavigation;
winforms\Managed\System\WinForms\DataGridParentRows.cs (1)
271dataGrid.Caption.BackButtonVisible = (parentsCount > 0) && (dataGrid.AllowNavigation);
winforms\Managed\System\WinForms\DataGridRelationshipRow.cs (6)
150Debug.Assert(this.dgTable.DataGrid.AllowNavigation, "how can the user collapse the relations if the grid does not allow navigation?"); 165Debug.Assert(this.dgTable.DataGrid.AllowNavigation, "how can the user expand the relations if the grid does not allow navigation?"); 286if (dgTable == null || dgTable.DataGrid == null || !dgTable.DataGrid.AllowNavigation) 391if (dgTable == null || dgTable.DataGrid == null || !dgTable.DataGrid.AllowNavigation) 459if (this.dgTable.RelationsList.Count == 0 || dgTable.DataGrid == null || !dgTable.DataGrid.AllowNavigation) 604bool paintPlusMinus = dgTable.RelationsList.Count > 0 && dgTable.DataGrid.AllowNavigation;
winforms\Managed\System\WinForms\DataGridTable.cs (1)
908if (relationshipRect.IsEmpty && DataGrid.AllowNavigation) {