在VS2008/VS2010中编写?如下代码:
PrintDialog printDialog = new PrintDialog();
printDialog.ShowDialog();
在??XP环境下,它可以正常显示出打印对话框。但在Windows 7 64位环境下,什么也显示不出来,也没有异常抛出。
将PrintDialog.?UseEXDialog属性设置为True,可显示出打印对话框。代码如下:
PrintDialog printDialog = new PrintDialog();
printDialog.UseEXDialog = true;
printDialog.ShowDialog();
这是VS2008/2010的bug,并且此bug可能不会在VS2008/2010上被修复。
转自:
http://blog.csdn.net/gui597651737/article/details/7897388
阅读(2440) | 评论(0) | 转发(0) |