DataGrid.CellStyle 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DataGrid에 있는 모든 셀에 적용된 스타일을 가져오거나 설정합니다.
public:
property System::Windows::Style ^ CellStyle { System::Windows::Style ^ get(); void set(System::Windows::Style ^ value); };
public System.Windows.Style CellStyle { get; set; }
member this.CellStyle : System.Windows.Style with get, set
Public Property CellStyle As Style
속성 값
DataGrid에 있는 셀에 적용된 스타일입니다. 등록된 기본값은 null
입니다. 값에 영향을 줄 수 있는 요소에 대한 자세한 내용은 DependencyProperty를 참조하십시오.
예제
다음 예제에서는 트리거를 사용하여 셀을 Background 선택할 때의 DataGridCell 색을 변경합니다.
<DataGrid Name="DG1" ItemsSource="{Binding}" SelectionUnit="Cell" >
<DataGrid.CellStyle>
<Style TargetType="DataGridCell" >
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="SeaGreen"/>
</Trigger>
</Style.Triggers>
</Style>
</DataGrid.CellStyle>
</DataGrid>
다음 그림에서는 출력을 보여 줍니다.
설명
에 있는 모든 셀의 시각적 모양을 업데이트하려면 a Style 를 DataGrid적용합니다. 정의 하는 Style 지정 된 셀에 대 한는 TargetType 의 DataGridCell합니다.
Style 테이블, 열 또는 셀 수준에서 셀에 적용할 수 있습니다. 열의 Style 모든 셀에 적용하려면 속성을 설정합니다 DataGridColumn.CellStyle . 속성보다 우선 적용 DataGrid.CellStyle 됩니다. 개별 셀에 Style 적용하려면 .에 DataGridCell직접 속성을 설정합니다Style. 셀에 적용된 다른 모든 스타일보다 우선 적용됩니다.