Table加背景图片的方法
Tables("表名").Grid.BackgroundImage = GetImage("图片全路径")
Tables("表名").Grid.BackgroundImageLayout = 0 ‘可以不设,尽量用0或1,避免闪烁
这样就可以看见背景图片了
接着要对表格样式进行设置(给各种样式的颜色加透明度)
参照 帮助中 系统样式设置
比如:DataTables("表名").SysStyles("Alternate").BackColor = Color.FromArgb(150,180,180,180)
多了些趣味。
好!