gpt4 book ai didi

c# - 在 C# Winform 应用程序中设置 DataGridView 行背景图像

转载 作者:太空宇宙 更新时间:2023-11-03 13:30:22 25 4
gpt4 key购买 nike

我正在开发一个 Windows 窗体应用程序,我需要将背景图像设置为数据 GridView 的数据行。例如,如果我的数据网格中有 4 行,我想将图像重复到行背景而不是整个 GridView 。图像应设置为背景图像,以便我可以在图像上方显示文字。我怎么能做到这一点?请帮忙。提前致谢。

最佳答案

你可以这样做:

Image img;

public Form1()
{
InitializeComponent();
img = Image.FromFile(@"C:\Pictures\1.jpg");
}

private void GV_Paint(object sender, PaintEventArgs e)
{
e.Graphics.DrawImageUnscaled(img, new Point(0, 0));
}

关于c# - 在 C# Winform 应用程序中设置 DataGridView 行背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20825867/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com