在C#中使用图像作为边框

时间:2012-03-09 14:52:07

标签: c# image border

我在C#中创建自定义应用程序,我需要使用位图图像而不是标准的Windows边框。我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

如果您正在使用WinForms set

FormBorderStyleNone
BackgroundImage到您想要的图像
BackgroundImageLayoutStretch

如果你想在你的boder上重复一个模式,请设置

BackgroundImageLayoutTile

并使用面板隐藏图像的中心。