标签: c# image border
我在C#中创建自定义应用程序,我需要使用位图图像而不是标准的Windows边框。我怎么能这样做?
答案 0 :(得分:2)
如果您正在使用WinForms set
FormBorderStyle至None BackgroundImage到您想要的图像 BackgroundImageLayout至Stretch
FormBorderStyle
None
BackgroundImage
BackgroundImageLayout
Stretch
如果你想在你的boder上重复一个模式,请设置
BackgroundImageLayout至Tile
Tile
并使用面板隐藏图像的中心。