問題來源:
http://www.cnblogs.com/del/archive/2008/05/26/1207811.html#1475006
本例效果圖:
代碼文件:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
{使用靜態(tài)數(shù)組建立區(qū)域}
procedure TForm1.Button1Click(Sender: TObject);
var
arr: array[0..3] of TPoint;
rgn: HRGN;
w,h: Integer;
begin
w := ClientWidth;
h := ClientHeight;
arr[0] := Point(w div 2, 0);
arr[1] := Point(w, h div 2);
arr[2] := Point(w div 2, h);
arr[3] := Point(0, h div 2);
rgn := CreatePolygonRgn(arr, Length(arr), WINDING);
{下面是描邊和填充這個區(qū)域}
Canvas.Brush.Color := clSilver;
FrameRgn(Canvas.Handle, rgn, Canvas.Brush.Handle, 1, 1);
Canvas.Brush.Style := bsCross;
FillRgn(Canvas.Handle, rgn, Canvas.Brush.Handle);
end;
{使用動態(tài)數(shù)組建立區(qū)域}
procedure TForm1.Button2Click(Sender: TObject);
var
arr: array of TPoint;
rgn: HRGN;
w,h: Integer;
begin
SetLength(arr, 4);
w := ClientWidth;
h := ClientHeight;
arr[0] := Point(w div 2, 0);
arr[1] := Point(w, h div 2);
arr[2] := Point(w div 2, h);
arr[3] := Point(0, h div 2);
rgn := CreatePolygonRgn(arr[0], Length(arr), WINDING); {第一個參數(shù)是數(shù)組的起點}
{下面是描邊和填充這個區(qū)域}
Canvas.Brush.Color := clRed;
FrameRgn(Canvas.Handle, rgn, Canvas.Brush.Handle, 1, 1);
Canvas.Brush.Style := bsCross;
FillRgn(Canvas.Handle, rgn, Canvas.Brush.Handle);
end;
end.
窗體文件:
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 175
ClientWidth = 289
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object Button1: TButton
Left = 208
Top = 113
Width = 75
Height = 25
Caption = 'Button1'
TabOrder = 0
OnClick = Button1Click
end
object Button2: TButton
Left = 208
Top = 144
Width = 75
Height = 25
Caption = 'Button2'
TabOrder = 1
OnClick = Button2Click
end
end