Outlook UserControls 中特定于 Win7 的 UI 绘制问题
我开发了一个 Outlook 2007 侧边栏 UserControl,它显示在电子邮件窗口的右侧。
在Win7环境下运行的情况;如果用户从其他程序(例如 MS Word)启动电子邮件撰写表单,则用户控件通常将显示为空白。也就是说它确实有时会出现(大约1/5的概率)。
哪些情况实际上会导致表单根本无法绘制?
I developed an Outlook 2007 side-bar UserControl that appears on the right side of email windows.
In the case that it is running in a Win7 environment; If the user launches an Email Compose form from another program(like MS Word), the UserControl will Usually appear blank. Which is to say that it actually does appear sometimes (about 1/5 probability).
What cases can actually cause a form to not Paint at all anyway?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也经历过这个,我的解决方法是去 userControl.Width++;这似乎迫使油漆发生..
I have experienced this also, my workaround is to go userControl.Width++; which seems to force a the paint to happen..