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:dxn="http://schemas.devexpress.com/winfx/2008/xaml/navbar"
Width="800"
Height="600"
Title="NavBarControl을 단순 DataTable에 바인딩 하기"
FontFamily="나눔고딕코딩"
FontSize="12">
<Grid>
<dxn:NavBarControl x:Name="navBarControl"
ItemsSource="{Binding}"
GroupDescription="Group">
<dxn:NavBarControl.Resources>
<Style TargetType="dxn:NavBarGroup">
<Setter Property="Header" Value="{Binding}" />
</Style>
<Style TargetType="dxn:NavBarItem">
<Setter Property="Content" Value="{Binding Path=Item}" />
</Style>
</dxn:NavBarControl.Resources>
</dxn:NavBarControl>
</Grid>
</Window>
728x90
▶ MainWindow.xaml.cs
using System.Data;
using System.Windows;
namespace TestProject
{
/// <summary>
/// 메인 윈도우
/// </summary>
public partial class MainWindow : Window
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 생성자 - MainWindow()
/// <summary>
/// 생성자
/// </summary>
public MainWindow()
{
InitializeComponent();
DataTable dataTable = new DataTable();
dataTable.Columns.Add("Group", typeof(string));
dataTable.Columns.Add("Item" , typeof(string));
for(int i = 1; i <= 2; i++)
{
for(int j = 1; j <= 3; j++)
{
dataTable.Rows.Add
(
new object[]
{
"Group " + i.ToString(),
"Item " + i.ToString() + "-" + j.ToString()
}
);
}
}
DataContext = dataTable;
}
#endregion
}
}
728x90
그리드형(광고전용)
'DevExpress > WPF' 카테고리의 다른 글
[DEVEXPRESS/WPF] GridControl 클래스 : 상세 확장 버튼 표시 조정하기 (0) | 2017.12.25 |
---|---|
[DEVEXPRESS/WPF] GridControl 클래스 : 상세 영역에서 차트 표시하기 (0) | 2017.12.25 |
[DEVEXPRESS/WPF] GridControl 클래스 : 디폴트 값으로 신규 항목 행 초기화 하기 (0) | 2017.12.22 |
[DEVEXPRESS/WPF] GridControl 클래스 : 어트리뷰트 기반 검증하기 (0) | 2017.12.22 |
[DEVEXPRESS/WPF] GridControl 클래스 : 자동으로 생성된 컬럼 커스텀 처리하기 (0) | 2017.12.18 |
[DEVEXPRESS/WPF] GridControl 클래스 : 밴드 뷰 생성하기 (0) | 2017.12.17 |
[DEVEXPRESS/WPF] GridControl 클래스 : 그룹 행 확장 방지하기 (0) | 2017.12.16 |
[DEVEXPRESS/WPF] GridControl 클래스 : 신규 항목 행 특징 구현하기 (0) | 2017.12.16 |
[DEVEXPRESS/WPF] RichEditControl 클래스 : 페이지 레이아웃 프로그램적으로 설정하기 (0) | 2017.12.16 |
[DEVEXPRESS/WPF] RichEditControl 클래스 : FieldCollection.Add 메소드를 사용해 필드 삽입하기 (0) | 2017.12.16 |