this.BackgroundImage = global::AndonAlarmSys.Properties.Resources.default_andon;
重绘一下试试
在WinForm窗体中使用Controls控件集的SetChildIndex方法,该方法将子控件设定为指定的索引值,其方法原型如下:
void SetChildIndex(Control child, int newIndex)
假设窗体中有一个按钮Button控件,名为button1,如果将其的索引设置为10,源代码如下:
this.Controls.SetChildIndex(button1, 10);
索引越大,控件位置越靠上。
可能是控件的位置关系