[C#/WPF/DEVEXPRESS] GridControl 클래스 : 포커스 데이터 행과 포커스 셀의 모양 변경하기
■ GridControl 클래스에서 포커스 데이터 행과 포커스 셀의 모양을 변경하는 방법을 보여준다. ▶ MainWindow.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
<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="GridControl 클래스 : 포커스 데이터 행과 포커스 셀의 모양 변경하기" FontFamily="나눔고딕코딩" FontSize="16"> <Window.Resources> <Style x:Key="CellStyleKey" TargetType="dxg:CellContentPresenter"> <Style.Triggers> <Trigger Property="dxg:DataViewBase.IsFocusedCell" Value="True"> <Setter Property="Background" Value="Green" /> <Setter Property="Foreground" Value="Yellow" /> </Trigger> </Style.Triggers> </Style> <Style x:Key="RowStyleKey" TargetType="dxg:GridRowContent"> <Style.Triggers> <Trigger Property="dxg:DataViewBase.IsFocusedRow" Value="True"> <Setter Property="Background" Value="Gray" /> <Setter Property="Foreground" Value="White" /> </Trigger> </Style.Triggers> </Style> </Window.Resources> <Grid> <dxg:GridControl x:Name="gridControl" AutoGenerateColumns="AddNew"> <dxg:GridControl.View> <dxg:TableView ShowGroupPanel="False" AllowGrouping="False" CellStyle="{StaticResource CellStyleKey}" RowStyle="{StaticResource RowStyleKey}"> </dxg:TableView> </dxg:GridControl.View> </dxg:GridControl> </Grid> </Window> |
▶ MainWindow.xaml.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
using System.Windows; namespace TestProject { /// <summary> /// 메인 윈도우 /// </summary> public partial class MainWindow : Window { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); this.gridControl.ItemsSource = new ProductList().GetData(); } #endregion } } |
TestProject.zip