获取表单图像背景的问题
Posted
技术标签:
【中文标题】获取表单图像背景的问题【英文标题】:problem getting a form image background 【发布时间】:2011-01-28 17:46:25 【问题描述】:我正在创建一个透明的datagridview
//我得到了父背景图片
位图 parentBackGround = new Bitmap(this.Parent.BackgroundImage);
//将我要创建的区域设置为等于我的网格的大小
矩形 rect = new Rectangle(this.Location.X, this.Location.Y, this.Width, this.Height);
//并在整个网格中绘制背景图像被我的网格覆盖的区域,做出“透明”的效果。
graphics.DrawImage(parentBackGround.Clone(rect, PixelFormat.Format32bppRgb), gridBounds);
当网格父级的背景图像以正常布局显示时,一切正常,但如果布局是拉伸、居中或任何其他布局,透明效果消失了,您有什么解决办法吗?
【问题讨论】:
【参考方案1】:为什么不尝试使用 TransparencyKey 属性(Form)来代替呢? http://msdn.microsoft.com/en-us/library/system.windows.forms.form.transparencykey.aspx
【讨论】:
因为我想让datagridview透明而不是父表单 您可以将透明度键设置为任何颜色,比如说粉红色,然后表单上的任何颜色属性及其设置为粉红色的控件都将是透明的 是的,但是粉红色的控件将非常“透明”,我的意思是就像在网格区域中创建一个洞【参考方案2】:好吧,我创建了一个位图并将网格的父窗体的背景图像复制到其中的大小,然后只使用它覆盖我的网格的部分。
我从网格继承并覆盖这些方法:
protected override void PaintBackground(Graphics graphics, Rectangle clipBounds, Rectangle gridBounds)
base.PaintBackground(graphics, clipBounds, gridBounds);
if (DesignMode) return;
Control tmpParent = Parent;
int locationX = this.Location.X;
int locationY = this.Location.Y;
while (tmpParent.BackgroundImage == null)
locationX += tmpParent.Location.X;
locationY += tmpParent.Location.Y;
tmpParent = tmpParent.Parent;
Rectangle rectSource = new Rectangle(locationX, locationY, this.Width, this.Height);
Rectangle rectDest = new Rectangle(0, 0, rectSource.Width, rectSource.Height);
Bitmap b = new Bitmap(tmpParent.ClientRectangle.Width, tmpParent.ClientRectangle.Height);
Graphics.FromImage(b).DrawImage(tmpParent.BackgroundImage, tmpParent.ClientRectangle);
graphics.DrawImage(b, rectDest, rectSource, GraphicsUnit.Pixel);
SetCellsTransparent();
public void SetCellsTransparent()
this.EnableHeadersVisualStyles = false;
this.ColumnHeadersDefaultCellStyle.BackColor = Color.Transparent;
this.RowHeadersDefaultCellStyle.BackColor = Color.Transparent;
foreach (DataGridViewColumn col in this.Columns)
col.DefaultCellStyle.BackColor = Color.Transparent;
col.DefaultCellStyle.SelectionBackColor = Color.Transparent;
【讨论】:
以上是关于获取表单图像背景的问题的主要内容,如果未能解决你的问题,请参考以下文章