我想实现一些导航按钮(没有文字,只有图像,如平面按钮)。
我使用BackgroundImage属性添加默认按钮。它在边框和图像之间有一个小的差距。
如何消除这种差距?
答案 0 :(得分:1)
到目前为止,我得到了你的关注。 您需要设置Button的两个属性。
button.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
button1.FlatAppearance.BorderSize = 0;
答案 1 :(得分:0)
将border属性设置为None将使按钮完全平整,只显示平面图像
答案 2 :(得分:0)
将FlatStyle设置为Flat
button1.FlatStyle = FlatStyle.Flat;