本文主要是介绍自定义打印外观,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
以下示例代码演示了如何将打印外观和背景颜色自定义应用于网格控件中的偶数行。
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;
结果如下图所示。
这篇关于自定义打印外观的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!