728x90
반응형
728x170
▶ MainWindow.xaml
<Window x:Class="TestProject.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
Width="800"
Height="600"
Title="편집 셀 간 커스텀 네비게이션 구현하기"
FontFamily="나눔고딕코딩"
FontSize="16">
<Grid>
<dxg:GridControl x:Name="gridControl">
<dxg:GridControl.Columns>
<dxg:GridColumn FieldName="ProductName" />
<dxg:GridColumn FieldName="Country" />
<dxg:GridColumn FieldName="City" />
<dxg:GridColumn FieldName="UnitPrice" />
<dxg:GridColumn FieldName="Quantity" />
</dxg:GridControl.Columns>
<dxg:GridControl.View>
<dxg:TableView>
<dxg:TableView.DataRowTemplate>
<DataTemplate>
<StackPanel>
<dxg:GridCellContentPresenter
FieldName="ProductName"
Style="{Binding Path=(dxg:GridControl.ActiveView).CellStyle, RelativeSource={RelativeSource TemplatedParent}}"
NavigationIndex="0" />
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<dxg:GridCellContentPresenter
FieldName="Country"
Style="{Binding Path=(dxg:GridControl.ActiveView).CellStyle, RelativeSource={RelativeSource TemplatedParent}}"
NavigationIndex="1" />
<dxg:GridCellContentPresenter
Grid.Column="1"
FieldName="City"
Style="{Binding Path=(dxg:GridControl.ActiveView).CellStyle, RelativeSource={RelativeSource TemplatedParent}}"
NavigationIndex="2" />
</Grid>
<dxg:GridCellContentPresenter
FieldName="UnitPrice"
Style="{Binding Path=(dxg:GridControl.ActiveView).CellStyle, RelativeSource={RelativeSource TemplatedParent}}"
NavigationIndex="3" />
<dxg:GridCellContentPresenter
FieldName="Quantity"
Style="{Binding Path=(dxg:GridControl.ActiveView).CellStyle, RelativeSource={RelativeSource TemplatedParent}}"
NavigationIndex="4" />
</StackPanel>
</DataTemplate>
</dxg:TableView.DataRowTemplate>
</dxg:TableView>
</dxg:GridControl.View>
</dxg:GridControl>
</Grid>
</Window>
728x90
반응형
그리드형(광고전용)
'DevExpress > WPF' 카테고리의 다른 글
[DEVEXPRESS/WPF] GridControl 클래스 : 조건부 스타일 적용하기 (0) | 2018.03.04 |
---|---|
[DEVEXPRESS/WPF] GridControl 클래스 : 포커스 데이터 행과 포커스 셀의 모양 변경하기 (0) | 2018.03.04 |
[DEVEXPRESS/WPF] TreeListControl 클래스 : 수동으로 드래그 & 드롭 사용하기 (0) | 2018.03.04 |
[DEVEXPRESS/WPF] TreeListView 클래스 : 드래그 & 드롭 사용하기 (0) | 2018.03.04 |
[DEVEXPRESS/WPF] GridControl 클래스 : TableView에서 드래그 & 드롭 사용하기 (0) | 2018.03.04 |
[DEVEXPRESS/WPF] 편집 셀 간 커스텀 네비게이션 구현하기 (0) | 2018.03.04 |
[DEVEXPRESS/WPF] 행 더블 클릭 처리하기 (0) | 2018.03.03 |
[DEVEXPRESS/WPF] Per-Pixel 스크롤을 위한 커스텀 스크롤 애니메이션 구현하기 (0) | 2018.03.03 |
[DEVEXPRESS/WPF] 커스텀 정렬 구현하기 (0) | 2018.03.03 |
[DEVEXPRESS/WPF] 커스텀 필터 드롭 다운 생성하기 (0) | 2018.03.03 |
[DEVEXPRESS/WPF] 컬럼의 필터 드롭 다운 내에서 커스텀 필터 항목 만들기 (0) | 2018.03.03 |
댓글을 달아 주세요