TableLayoutCellPaintEventArgs 클래스
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
CellPaint 이벤트에 대한 데이터를 제공합니다.
public ref class TableLayoutCellPaintEventArgs : System::Windows::Forms::PaintEventArgs
public class TableLayoutCellPaintEventArgs : System.Windows.Forms.PaintEventArgs
type TableLayoutCellPaintEventArgs = class
inherit PaintEventArgs
Public Class TableLayoutCellPaintEventArgs
Inherits PaintEventArgs
- 상속
다음 예제와 방법을 TableLayoutCellPaintEventArgs 의 모양을 사용자 지정할 수는 TableLayoutPanel 컨트롤입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 TableLayoutPanel 제어 합니다.
public class DemoTableLayoutPanel : TableLayoutPanel
{
protected override void OnCellPaint(TableLayoutCellPaintEventArgs e)
{
base.OnCellPaint(e);
Control c = this.GetControlFromPosition(e.Column, e.Row);
if ( c != null )
{
Graphics g = e.Graphics;
g.DrawRectangle(
Pens.Red,
e.CellBounds.Location.X+1,
e.CellBounds.Location.Y + 1,
e.CellBounds.Width - 2, e.CellBounds.Height - 2);
g.FillRectangle(
Brushes.Blue,
e.CellBounds.Location.X + 1,
e.CellBounds.Location.Y + 1,
e.CellBounds.Width - 2,
e.CellBounds.Height - 2);
};
}
}
Public Class DemoTableLayoutPanel
Inherits TableLayoutPanel
Protected Overrides Sub OnCellPaint( _
ByVal e As System.Windows.Forms.TableLayoutCellPaintEventArgs)
MyBase.OnCellPaint(e)
Dim c As Control = Me.GetControlFromPosition(e.Column, e.Row)
If c IsNot Nothing Then
Dim g As Graphics = e.Graphics
g.DrawRectangle( _
Pens.Red, _
e.CellBounds.Location.X + 1, _
e.CellBounds.Location.Y + 1, _
e.CellBounds.Width - 2, _
e.CellBounds.Height - 2)
g.FillRectangle( _
Brushes.Blue, _
e.CellBounds.Location.X + 1, _
e.CellBounds.Location.Y + 1, _
e.CellBounds.Width - 2, _
e.CellBounds.Height - 2)
End If
End Sub
End Class
TableLayoutCellPaintEventArgs 클래스 행, 열 및 테이블에서 셀의 그리기를 지원 하기 위해 셀의 범위에 대 한 정보를 제공 합니다.
Table |
TableLayoutCellPaintEventArgs 클래스의 새 인스턴스를 초기화합니다. |
Cell |
셀의 크기와 위치를 가져옵니다. |
Clip |
항목을 그릴 사각형을 가져옵니다. (다음에서 상속됨 PaintEventArgs) |
Column |
셀의 열을 가져옵니다. |
Graphics |
그리는 데 사용되는 그래픽을 가져옵니다. (다음에서 상속됨 PaintEventArgs) |
Row |
셀의 행을 가져옵니다. |
Dispose() |
PaintEventArgs에서 사용하는 모든 리소스를 해제합니다. (다음에서 상속됨 PaintEventArgs) |
Dispose(Boolean) |
PaintEventArgs에서 사용하는 관리되지 않는 리소스를 해제하고, 관리되는 리소스를 선택적으로 해제할 수 있습니다. (다음에서 상속됨 PaintEventArgs) |
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
Get |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
Get |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
Memberwise |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
To |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |
IDevice |
Windows 디바이스 컨텍스트의 핸들을 반환합니다. (다음에서 상속됨 PaintEventArgs) |
IDevice |
Windows 디바이스 컨텍스트의 핸들을 해제합니다. (다음에서 상속됨 PaintEventArgs) |
제품 | 버전 |
---|---|
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9 |
.NET 피드백
.NET은(는) 오픈 소스 프로젝트입니다. 다음 링크를 선택하여 피드백을 제공해 주세요.