gpt4 book ai didi

delphi - 更改Groupbox边框颜色

转载 作者:行者123 更新时间:2023-12-02 08:07:28 26 4
gpt4 key购买 nike

是否可以将GroupBox的默认灰色边框更改为可见的内容? (例如黑色或蓝色?)。我发现了一个类似的问题,但与 GroupBox 标题相关,而不是边框​​。

谢谢

最佳答案

根据您的要求,您可以做两件事:

  1. 使用第三方组件(如果可能的话免费)。
  2. 您自己创建组件。

现在,对于选项 1,我强烈推荐 FlatStyle 开源组件集,它包含 TFlatGroupBox ,其中包含您所要求的内容。这是link到我最新修改的版本(兼容delphi 10西雅图)。

对于选项 2,让我们为我们的组件设置一些标准

  1. 它是一个组框后代。(您的问题需要)
  2. 它需要有边框颜色属性(您的问题需要)
  3. 更改边框宽度怎么样。
  4. 如何更改边框样式(psSolidpsDashpsDotpsDashDotpsDashDotDotpsClearpsInsideFramepsUserStylepsAlternate)。

这是 TFlatGroupBox 的另一个修改版本,增加了功能

unit TFlatGroupBoxUnit;

interface

{$I DFS.inc}

uses
Windows, Messages, SysUtils, Forms, Classes, Graphics, Controls, ExtCtrls, FlatUtilitys;

type
TFlatGroupBox = class(TCustomControl)
private
FTransparent: Boolean;
FUseAdvColors: Boolean;
FAdvColorBorder: TAdvColors;
FBorderColor: TColor;
FBorder: TGroupBoxBorder;
FBorderWidth:integer;
Fborderstyle:Tpenstyle;
procedure SetAdvColors (Index: Integer; Value: TAdvColors);
procedure SetUseAdvColors (Value: Boolean);
procedure CMEnabledChanged (var Message: TMessage); message CM_ENABLEDCHANGED;
procedure CMTextChanged (var Message: TWmNoParams); message CM_TEXTCHANGED;
procedure SetColors(const Index: Integer; const Value: TColor);
procedure SetBorder(const Value: TGroupBoxBorder);
procedure CMSysColorChange (var Message: TMessage); message CM_SYSCOLORCHANGE;
procedure CMParentColorChanged (var Message: TWMNoParams); message CM_PARENTCOLORCHANGED;
procedure CMDialogChar (var Message: TCMDialogChar); message CM_DIALOGCHAR;
procedure WMSize (var Message: TWMSize); message WM_SIZE;
procedure WMMove (var Message: TWMMove); message WM_MOVE;
procedure SetTransparent (const Value: Boolean);
procedure SetBorderWidth(value:integer);
procedure SetBorderStyle(value:TPenStyle);
protected
procedure CalcAdvColors;
procedure Paint; override;
{$IFDEF DFS_COMPILER_4_UP}
procedure SetBiDiMode(Value: TBiDiMode); override;
{$ENDIF}
public
constructor Create (AOwner: TComponent); override;
published
property Transparent: Boolean read FTransparent write SetTransparent default false;
property BorderWidth: integer read FBorderWidth write SetBorderWidth default 1;
property BorderStyle:Tpenstyle read FBorderStyle write SetBorderStyle default psSolid;
property Align;
property Cursor;
property Caption;
property Font;
property ParentFont;
property Color;
property ParentColor;
property PopupMenu;
property ShowHint;
property ParentShowHint;
property Enabled;
property Visible;
property TabOrder;
property TabStop;
property Hint;
property HelpContext;
property ColorBorder: TColor index 0 read FBorderColor write SetColors default $008396A0;
property Border: TGroupBoxBorder read FBorder write SetBorder default brFull;
property AdvColorBorder: TAdvColors index 0 read FAdvColorBorder write SetAdvColors default 50;
property UseAdvColors: Boolean read FUseAdvColors write SetUseAdvColors default false;
{$IFDEF DFS_COMPILER_4_UP}
property Anchors;
property BiDiMode write SetBidiMode;
property Constraints;
property DragKind;
property DragMode;
property DragCursor;
property ParentBiDiMode;
property DockSite;
property OnEndDock;
property OnStartDock;
property OnDockDrop;
property OnDockOver;
property OnGetSiteInfo;
property OnUnDock;
{$ENDIF}
{$IFDEF DFS_DELPHI_5_UP}
property OnContextPopup;
{$ENDIF}
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnMouseDown;
property OnMouseMove;
property OnMouseUp;
property OnStartDrag;
end;

implementation

{ TFlatGroupBox }

constructor TFlatGroupBox.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
ControlStyle := ControlStyle + [csAcceptsControls, csOpaque];
FBorderColor := $008396A0;
FAdvColorBorder := 50;
SetBounds(0, 0, 185, 105);
end;

procedure TFlatGroupBox.Paint;
var
memoryBitmap: TBitmap;
borderRect, textBounds: TRect;
textHeight, textWidth: integer;
Format: UINT;
begin
borderRect := ClientRect;
{$IFDEF DFS_COMPILER_4_UP}
if BidiMode = bdRightToLeft then
Format := DT_TOP or DT_RIGHT or DT_SINGLELINE
else
Format := DT_TOP or DT_LEFT or DT_SINGLELINE;
{$ELSE}
Format := DT_TOP or DT_LEFT or DT_SINGLELINE;
{$ENDIF}

memoryBitmap := TBitmap.Create; // create memory-bitmap to draw flicker-free
try
memoryBitmap.Height := ClientRect.Bottom;
memoryBitmap.Width := ClientRect.Right;
memoryBitmap.Canvas.Font := Self.Font;

textHeight := memoryBitmap.canvas.TextHeight(caption);
textWidth := memoryBitmap.Canvas.TextWidth(caption);

{$IFDEF DFS_COMPILER_4_UP}
if BidiMode = bdRightToLeft then
textBounds := Rect(ClientRect.Right - 10 - textWidth, ClientRect.Top,
ClientRect.Right - 10 , ClientRect.Top + textHeight)
else
textBounds := Rect(ClientRect.Left + 10, ClientRect.Top,
ClientRect.Left + 10 + textWidth,
ClientRect.Top + textHeight);
{$ELSE}
textBounds := Rect(ClientRect.Left + 10, ClientRect.Top,
ClientRect.Left + 10 + textWidth,
ClientRect.Top + textHeight);
{$ENDIF}
textBounds := Rect(ClientRect.Left + 10, ClientRect.Top,
ClientRect.Right - 10,
ClientRect.Top + textHeight);

// Draw Background
if FTransparent then
DrawParentImage(Self, memoryBitmap.Canvas)
else
begin
memoryBitmap.Canvas.Brush.Color := Self.Color;
memoryBitmap.Canvas.FillRect(ClientRect);
end;

// Draw Border
memoryBitmap.Canvas.Pen.Color := FBorderColor;
memoryBitmap.Canvas.Pen.Style := FBorderStyle;
memoryBitmap.Canvas.Pen.Width := FBorderWidth;
case FBorder of
brFull:
{$IFDEF DFS_COMPILER_4_UP}
if BidiMode = bdRightToLeft then
memoryBitmap.Canvas.Polyline([Point(ClientRect.Right - 15 - textWidth, ClientRect.top + (textHeight div 2)),
Point(ClientRect.left, ClientRect.top + (textHeight div 2)),
Point(ClientRect.left, ClientRect.bottom-1), Point(ClientRect.right-1, ClientRect.bottom-1),
Point(ClientRect.right-1, ClientRect.top + (textHeight div 2)),
Point(ClientRect.Right - 7 , ClientRect.top + (textHeight div 2))])
else
memoryBitmap.Canvas.Polyline([Point(ClientRect.left + 5, ClientRect.top + (textHeight div 2)),
Point(ClientRect.left, ClientRect.top + (textHeight div 2)),
Point(ClientRect.left, ClientRect.bottom-1), Point(ClientRect.right-1, ClientRect.bottom-1),
Point(ClientRect.right-1, ClientRect.top + (textHeight div 2)),
Point(ClientRect.left + 12 + textWidth, ClientRect.top + (textHeight div 2))]);
{$ELSE}
memoryBitmap.Canvas.Polyline([Point(ClientRect.left + 5, ClientRect.top + (textHeight div 2)),
Point(ClientRect.left, ClientRect.top + (textHeight div 2)),
Point(ClientRect.left, ClientRect.bottom-1), Point(ClientRect.right-1, ClientRect.bottom-1),
Point(ClientRect.right-1, ClientRect.top + (textHeight div 2)),
Point(ClientRect.left + 12 + textWidth, ClientRect.top + (textHeight div 2))]);
{$ENDIF}
brOnlyTopLine:
{$IFDEF DFS_COMPILER_4_UP}
if BidiMode = bdRightToLeft then
begin
memoryBitmap.Canvas.Polyline([Point(ClientRect.right - 5, ClientRect.top + (textHeight div 2)), Point(ClientRect.right, ClientRect.top + (textHeight div 2))]);
memoryBitmap.Canvas.Polyline([Point(ClientRect.left+1, ClientRect.top + (textHeight div 2)), Point(ClientRect.right - 12 - textWidth, ClientRect.top + (textHeight div 2))]);
end
else
begin
memoryBitmap.Canvas.Polyline([Point(ClientRect.left + 5, ClientRect.top + (textHeight div 2)), Point(ClientRect.left, ClientRect.top + (textHeight div 2))]);
memoryBitmap.Canvas.Polyline([Point(ClientRect.right-1, ClientRect.top + (textHeight div 2)), Point(ClientRect.left + 12 + textWidth, ClientRect.top + (textHeight div 2))]);
end;
{$ELSE}
begin
memoryBitmap.Canvas.Polyline([Point(ClientRect.left + 5, ClientRect.top + (textHeight div 2)), Point(ClientRect.left, ClientRect.top + (Canvas.textHeight(caption) div 2))]);
memoryBitmap.Canvas.Polyline([Point(ClientRect.right-1, ClientRect.top + (textHeight div 2)), Point(ClientRect.left + 12 + textWidth, ClientRect.top + (textHeight div 2))]);
end;
{$ENDIF}
end;

// Draw Text
memoryBitmap.Canvas.Brush.Style := bsClear;
if not Enabled then
begin
OffsetRect(textBounds, 1, 1);
memoryBitmap.Canvas.Font.Color := clBtnHighlight;
DrawText(memoryBitmap.Canvas.Handle, PChar(Caption), Length(Caption), textBounds, Format);
OffsetRect(textBounds, -1, -1);
memoryBitmap.Canvas.Font.Color := clBtnShadow;
DrawText(memoryBitmap.Canvas.Handle, PChar(Caption), Length(Caption), textBounds, Format);
end
else
DrawText(memoryBitmap.Canvas.Handle, PChar(Caption), Length(Caption), textBounds, Format);

// Copy memoryBitmap to screen
canvas.CopyRect(ClientRect, memoryBitmap.canvas, ClientRect);
finally
memoryBitmap.free; // delete the bitmap
end;
end;

procedure TFlatGroupBox.CMTextChanged (var Message: TWmNoParams);
begin
inherited;
Invalidate;
end;

procedure TFlatGroupBox.SetColors(const Index: Integer;
const Value: TColor);
begin
case Index of
0: FBorderColor := Value;
end;
Invalidate;
end;

procedure TFlatGroupBox.SetBorder(const Value: TGroupBoxBorder);
begin
FBorder := Value;
Invalidate;
end;

procedure TFlatGroupBox.SetAdvColors(Index: Integer; Value: TAdvColors);
begin
case Index of
0: FAdvColorBorder := Value;
end;
CalcAdvColors;
Invalidate;
end;

procedure TFlatGroupBox.SetUseAdvColors(Value: Boolean);
begin
if Value <> FUseAdvColors then
begin
FUseAdvColors := Value;
ParentColor := Value;
CalcAdvColors;
Invalidate;
end;
end;

procedure TFlatGroupBox.CalcAdvColors;
begin
if FUseAdvColors then
begin
FBorderColor := CalcAdvancedColor(Color, FBorderColor, FAdvColorBorder, darken);
end;
end;

procedure TFlatGroupBox.CMParentColorChanged(var Message: TWMNoParams);
begin
inherited;
if FUseAdvColors then
begin
ParentColor := True;
CalcAdvColors;
end;
Invalidate;
end;

procedure TFlatGroupBox.CMSysColorChange(var Message: TMessage);
begin
if FUseAdvColors then
begin
ParentColor := True;
CalcAdvColors;
end;
Invalidate;
end;

procedure TFlatGroupBox.CMDialogChar(var Message: TCMDialogChar);
begin
with Message do
if IsAccel(Message.CharCode, Caption) and CanFocus then
begin
SetFocus;
Result := 1;
end;
end;

procedure TFlatGroupBox.CMEnabledChanged(var Message: TMessage);
begin
inherited;
Invalidate;
end;

procedure TFlatGroupBox.SetTransparent(const Value: Boolean);
begin
FTransparent := Value;
Invalidate;
end;

procedure TFlatGroupBox.SetBorderWidth(value:integer);
begin
FBorderWidth := Value;
Invalidate;
end;

procedure TFlatGroupBox.SetBorderStyle(value:TPenStyle);
begin
FBorderStyle := Value;
Invalidate;
end;

procedure TFlatGroupBox.WMMove(var Message: TWMMove);
begin
inherited;
if FTransparent then
Invalidate;
end;

procedure TFlatGroupBox.WMSize(var Message: TWMSize);
begin
inherited;
if FTransparent then
Invalidate;
end;

{$IFDEF DFS_COMPILER_4_UP}
procedure TFlatGroupBox.SetBiDiMode(Value: TBiDiMode);
begin
inherited;
Invalidate;
end;
{$ENDIF}

end.

通过添加的功能,您可以更改边框的颜色、宽度、样式,并且可以通过将边框样式设置为 psClear 来选择完全没有边框。

问候纳斯雷丁。

关于delphi - 更改Groupbox边框颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45933186/

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