Button背景透明:
Button.BackColor=Color.TransParent;
Button.FlatStyle=FlatStyle.Flat;
Button指定image图片:
bm = new Bitmap(fbImage); //fbImage图片路径
this.BackgroundImage = bm;//设置背景图片
this.BackgroundImageLayout = ImageLayout.Stretch;//设置背景图片自动适应
DataGridView不出现滚动条?它的ScrollBars属性我设置为Both了
原因是太多字段Frozen设置为true了。这些不算滚动条范围的。所以水平滚动条不出现了
DataGridView绑定的DataSource不能是model
绑定控件报错,可能是因为TabIndex的值不对。
SuperGrid变色要刷新绑定窗体数据。