Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在互联网上搜索解决方案后,我在 2007 年的 CodeProject 上找到了这个:
VisibleWhilePrinting = false
这似乎在 VB.Net 中不存在。打印表单时有什么东西可以用来隐藏按钮吗?(除了每次打印表单时手动将按钮的“可见”属性设置为隐藏)。
谢谢。
你为什么不创建一个处理这种行为的方法?您提供的代码可能是在代码中某处引用以确定需要发生什么的变量,例如:
Dim VisibleWhilePrinting As Boolean = False
然后可以在任何地方使用或设置它,然后在需要的地方使用它。为了隐藏一个按钮,取决于你为什么需要隐藏它。正如您已经说明visible了按钮本身的属性。所以正如我所说,创建一个方法并调用它或一个函数......
visible
更新
正如@varocarbas 所提到的,没有一种自动的方法可以实现这一点,只能手动实现。