#c# #.net #wpf #gridview
#c# #.net #wpf #просмотр сетки
Вопрос:
У меня есть WPF DataGrid. Подскажите, пожалуйста, как программно отключить определенную ячейку в WPF DataGrid.
Ответ №1:
Я отвечаю на это, поскольку столкнулся с той же проблемой, это решение, которое я придумал.
Вы не можете получить доступ к ячейкам и строкам непосредственно в WPF, поэтому сначала мы определяем некоторые вспомогательные расширения.
(Используя часть кода из: http://techiethings.blogspot.com/2010/05/get-wpf-datagrid-row-and-cell.html )
public static class DataGridExtensions
{
public static T GetVisualChild<T>(Visual parent) where T : Visual
{
T child = default(T);
int numVisuals = VisualTreeHelper.GetChildrenCount(parent);
for (int i = 0; i < numVisuals; i )
{
Visual v = (Visual)VisualTreeHelper.GetChild(parent, i);
child = v as T;
if (child == null)
{
child = GetVisualChild<T>(v);
}
if (child != null)
{
break;
}
}
return child;
}
public static DataGridRow GetRow(this DataGrid grid, int index)
{
DataGridRow row = (DataGridRow)grid.ItemContainerGenerator.ContainerFromIndex(index);
if (row == null)
{
// May be virtualized, bring into view and try again.
grid.UpdateLayout();
grid.ScrollIntoView(grid.Items[index]);
row = (DataGridRow)grid.ItemContainerGenerator.ContainerFromIndex(index);
}
return row;
}
public static DataGridCell GetCell(this DataGrid grid, DataGridRow row, int column)
{
if (row != null)
{
DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(row);
if (presenter == null)
{
grid.ScrollIntoView(row, grid.Columns[column]);
presenter = GetVisualChild<DataGridCellsPresenter>(row);
}
DataGridCell cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
return cell;
}
return null;
}
public static DataGridCell GetCell(this DataGrid grid, int row, int column)
{
DataGridRow gridRow = GetRow(grid, row);
return GetCell(grid, gridRow, column);
}
}
С помощью этого мы можем получить ячейку в первой строке, пятый столбец, например:
dataGrid1.GetCell(0, 4)
Таким образом, установить для столбца значение disabled теперь очень просто:
dataGrid1.GetCell(0, 4).IsEnabled = false;
Пожалуйста, обратите внимание, что в некоторых случаях необходимо, чтобы форма загрузилась, прежде чем что-либо из этого заработает.
Надеюсь, это кому-нибудь когда-нибудь поможет 😉
Ответ №2:
используя стили, как в следующем:
<DataGrid.CellStyle>
<Style TargetType="DataGridCell" >
<Style.Setters>
<Setter Property="IsEnabled" Value="False"/>
</Style.Setters>
</Style>
</DataGrid.CellStyle>
Комментарии:
1. Я не думаю, что это будет полезно для него / нее. Он / она хочет программно отключить их.
2. Это можно использовать для программной установки IsEnabled с помощью привязки и преобразователя значения.
<Setter Property="IsEnabled" Value="{Binding Index, Converter={StaticResource CellEnabled}}"/>