[VB.NET,C#] – 使用者自訂控制項(含原始碼) – DataGridView添加背景圖片

來源:互聯網
上載者:User

來源:http://www.codeproject.com/KB/grid/Datagridview_BackImage.aspx

VB.NET

Imports System.ComponentModel
Imports System.Drawing

Public Class UserDataGridView
Inherits Windows.Forms.DataGridView
Private m_Image As Image

Public Sub New()
'Me.m_Image = Drawing.Image.FromFile("C:\BG.jpg")
End Sub

Protected Overrides Sub PaintBackground(ByVal graphics As Graphics, ByVal clipBounds As Rectangle, ByVal gridBounds As Rectangle)
MyBase.PaintBackground(graphics, clipBounds, gridBounds)
graphics.DrawImage(Me.m_Image, gridBounds)
End Sub

'添加圖片屬性
Public Property BackImage() As Drawing.Image
Get
Return Me.m_Image
End Get
Set(ByVal value As Drawing.Image)
Me.m_Image = value
MyBase.Refresh()
End Set
End Property
End Class

 

 

C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace UserDataGridView
{
public partial class UserDataGridView : DataGridView
{
private Image m_Image;

public UserDataGridView()
{
InitializeComponent();
//this.m_Image = Image.FromFile("C:\\BG.jpg");
}

/// <summary>重寫PaintBackground</summary>
protected override void PaintBackground(Graphics graphics, Rectangle clipBounds, Rectangle gridBounds)
{
base.PaintBackground(graphics, clipBounds, gridBounds);
graphics.DrawImage(this.m_Image, gridBounds);
}

/// <summary>設定背景圖片</summary>
public Image BackImage
{
get
{
return this.m_Image;
}
set
{
this.m_Image = value;
base.Refresh(); // 重新載入
}
}
}
}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.