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 ItemsSource="{Binding}">
<dxg:GridControl.Bands>
<dxg:GridControlBand Header="0" VisibleIndex="0">
<dxg:GridColumn FieldName="ID" VisibleIndex="0" />
</dxg:GridControlBand>
<dxg:GridControlBand Header="1" VisibleIndex="1">
<dxg:GridColumn FieldName="Text" VisibleIndex="0" />
<dxg:GridColumn FieldName="Number" VisibleIndex="1" dxg:BandBase.GridRow="1"/>
</dxg:GridControlBand>
<dxg:GridControlBand Header="2" VisibleIndex="2">
<dxg:GridColumn FieldName="MultiLineText" />
</dxg:GridControlBand>
</dxg:GridControl.Bands>
<dxg:GridControl.View>
<dxg:TableView
AllowChangeColumnParent="True"
AllowChangeBandParent="True" />
</dxg:GridControl.View>
</dxg:GridControl>
</Grid>
</Window>
728x90
▶ MainWindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Windows;
namespace TestProject
{
/// <summary>
/// 메인 윈도우
/// </summary>
public partial class MainWindow : Window
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 생성자 - MainWindow()
/// <summary>
/// 생성자
/// </summary>
public MainWindow()
{
InitializeComponent();
List<Sample> sourceList = new List<Sample>();
for(int i = 0; i < 100; i++)
{
sourceList.Add
(
new Sample()
{
ID = i,
Text = "Row" + i,
Number = i,
MultiLineText = "Row" + i + "Line0" + Environment.NewLine +
"Row" + i + "Line1" + Environment.NewLine +
"Row" + i + "Line2"
}
);
}
DataContext = sourceList;
}
#endregion
}
}
728x90
반응형
그리드형(광고전용)
'DevExpress > WPF' 카테고리의 다른 글
[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] NavBarControl 클래스 : 단순 DataTable에 바인딩 하기 (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 |
[DEVEXPRESS/WPF] RichEditControl 클래스 : InsertFieldCommand를 통해 필드 삽입하기 (0) | 2017.12.16 |
댓글을 달아 주세요