彩票走势图

logo DevExpress WinForm中文手册

如何预览XtraGrid控件


立即下载DevExpress WinForms

下面的示例展示了如何预览XtraGrid。

C#:


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


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

网格预览窗口
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP