WinForm界面控件开发入门指南 - 自定义打印外观_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > WinForm界面控件开发入门指南 - 自定义打印外观

WinForm界面控件开发入门指南 - 自定义打印外观

 2021/9/2 15:31:17  AABBbaby  程序员俱乐部  我要评论(0)
  • 摘要:获取工具下载-DevExpressWinFormv21.1如何预览XtraGrid控件以下示例显示如何预览XtraGrid。C#privatevoidShowGridPreview(DevExpress.XtraGrid.GridControlgrid){//CheckwhethertheGridControlcanbepreviewed.if(!grid.IsPrintingAvailable){MessageBox.Show("The'DevExpress
  • 标签:for 开发 控件 winform 自定义

获取工具下载 - DevExpress WinForm v21.1

如何预览XtraGrid控件

以下示例显示如何预览XtraGrid。

C#

?

class="prettyprint lang-cs">private void ShowGridPreview(DevExpress.XtraGrid.GridControl grid) {
// Check whether the Grid Control can be previewed.
if(!grid.IsPrintingAvailable) {
MessageBox.Show("The 'DevExpress.XtraPrinting' Library is not found", "Error");
return;
}
// Opens the Preview window.
grid.ShowPreview();
}

?

VB.NET

?

Sub ShowGridPreview(ByVal grid As DevExpress.XtraGrid.GridControl)
' Check whether the Grid Control can be previewed.
If Not grid.IsPrintingAvailable Then
MessageBox.Show("The 'DevExpress.XtraPrinting' Library is not found", "Error")
Return
End If
' Opens the Preview window.
grid.ShowPreview()
End Sub

?

下图显示了示例网格的预览窗口。

DevExpress WinForm控件入门指南 - 预览XtraGrid控件
如何自定义打印外观

以下示例代码演示了如何将打印外观和背景颜色自定义应用于网格控件中的偶数行。

C#

?

gridView1.OptionsPrint.UsePrintStyles = true;
// Enable the AppearancePrint.EvenRow property's settings.
gridView1.OptionsPrint.EnableAppearanceEvenRow = true;
// Set the background color of the even rows.
gridView1.AppearancePrint.EvenRow.BackColor = Color.LightYellow;

?

VB.NET

?

GridView1.OptionsPrint.UsePrintStyles = True
' Enable the AppearancePrint.EvenRow property's settings.
GridView1.OptionsPrint.EnableAppearanceEvenRow = True
' Set the background color of the even rows.
GridView1.AppearancePrint.EvenRow.BackColor = Color.LightYellow

?

结果如下图所示。

DevExpress WinForm控件入门指南 - 自定义打印外观

DevExpress WinForm | 下载试用

DevExpress WinForm拥有180+组件和UI库,能为Windows Forms平台创建具有影响力的业务解决方案。DevExpress WinForms能完美构建流畅、美观且易于使用的应用程序,无论是Office风格的界面,还是分析处理大批量的业务数据,它都能轻松胜任!

更多产品正版授权详情及优惠,欢迎咨询在线客服>>


DevExpress技术交流群4:715863792??????欢迎一起进群讨论

更多DevExpress线上公开课、中文教程资讯请上中文网获取

发表评论
用户名: 匿名