[DEVEXPRESS/WINFORM] TreeList 클래스 : ShowPrintPreview 메소드를 사용해 인쇄 미리보기 대화 상자 표시하기
DevExpress/WinForm 2020. 5. 30. 09:42728x90
728x170
▶ MainForm.cs
using System;
using DevExpress.XtraEditors;
namespace TestProject
{
/// <summary>
/// 메인 폼
/// </summary>
public partial class MainForm : XtraForm
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 생성자 - MainForm()
/// <summary>
/// 생성자
/// </summary>
public MainForm()
{
InitializeComponent();
Load += Form_Load;
}
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Method
////////////////////////////////////////////////////////////////////////////////////////// Private
#region 폼 로드시 처리하기 - Form_Load(sender, e)
/// <summary>
/// 폼 로드시 처리하기
/// </summary>
/// <param name="sender">이벤트 발생자</param>
/// <param name="e">이벤트 인자</param>
private void Form_Load(object sender, EventArgs e)
{
this.treeList.RowHeight = 25;
this.treeList.OptionsView.AutoWidth = false;
this.treeList.OptionsBehavior.ReadOnly = true;
this.treeList.OptionsBehavior.PopulateServiceColumns = true;
this.treeList.KeyFieldName = "ID";
this.treeList.ParentFieldName = "RegionID";
this.treeList.DataSource = SalesData.GetSalesDataList();
this.treeList.Columns[this.treeList.KeyFieldName ].Visible = false;
this.treeList.Columns[this.treeList.ParentFieldName].Visible = false;
this.treeList.BestFitColumns();
this.treeList.ExpandAll();
if(!this.treeList.IsPrintingAvailable)
{
XtraMessageBox.Show(this, "Missing DevExpress.XtraPrinting library", "Error");
return;
}
this.treeList.ShowPrintPreview();
}
#endregion
}
}
728x90
그리드형(광고전용)