첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
728x90
반응형
728x170
using Infragistics.Win.UltraWinGrid;

private UltraGrid ultraGrid;

...

this.ultraGrid.DisplayLayout.Bands[0].Columns["Country"].AllowRowSummaries = AllowRowSummaries.True;

this.ultraGrid.DisplayLayout.Bands[0].Summaries.Add
(
    SummaryType.Minimum,
    null,
    this.ultraGrid.DisplayLayout.Bands[0].Columns["Country"],
    SummaryPosition.Left,
    null
);

// this.ultraGrid.DisplayLayout.Bands[0].Summaries[0].SummaryPosition = SummaryPosition.Center;

this.ultraGrid.DisplayLayout.Bands[0].SummaryFooterCaption = "My Sums";
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요