如何在asp.net面板上显示位图
如何在.Net 面板上显示位图?
How to show bitmap over panel in .Net?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在.Net 面板上显示位图?
How to show bitmap over panel in .Net?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我真的无法想象您在提出问题之前甚至尝试过自己这样做...
如果我向我的 Web 窗体添加一个
Panel
控件,然后在“属性”窗口中检查该控件的属性,我看到一个看起来特别有趣的:BackImageUrl
属性。Visual Studio 告诉我这允许我设置:
通过将该属性设置为我选择的位图的 URL,我可以在 .NET 中的面板上显示位图。
I can't really imagine that you even tried doing this yourself before asking the question...
If I add a
Panel
control to my Web Form, and then examine the properties of that control in the Properties Window, I see one that looks particularly interesting: theBackImageUrl
property.Visual Studio tells me that this allows me to set:
By setting that property to the URL of a bitmap of my choice, I can show a bitmap over a panel in .NET.