Skip to content

Commit 3efc59a

Browse files
version 3.4.0
- Added StyledButtonGroup Component - Added StyledButtonGroup Demo - Fixed Registration of some Components/Properties into IDE - Fixed TStyledBitBtn.Caption Stored in dfm as TBitBtn - Fixed ResizeButtons after loading StyledToolBar
1 parent a8cdd57 commit 3efc59a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+10811
-62
lines changed

Demos/StyledButtonGroup/Delphi10.4+/DResources.dfm

Lines changed: 1699 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{******************************************************************************}
2+
{ }
3+
{ TStyledButtonGroup Demo }
4+
{ Comparison TStyledButtonGroup with TButtonGroup }
5+
{ }
6+
{ Copyright (c) 2022-2024 (Ethea S.r.l.) }
7+
{ Author: Carlo Barazzetta }
8+
{ Contributors: }
9+
{ }
10+
{ https://github.com/EtheaDev/StyledComponents }
11+
{ }
12+
{******************************************************************************}
13+
{ }
14+
{ Licensed under the Apache License, Version 2.0 (the "License"); }
15+
{ you may not use this file except in compliance with the License. }
16+
{ You may obtain a copy of the License at }
17+
{ }
18+
{ http://www.apache.org/licenses/LICENSE-2.0 }
19+
{ }
20+
{ Unless required by applicable law or agreed to in writing, software }
21+
{ distributed under the License is distributed on an "AS IS" BASIS, }
22+
{ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. }
23+
{ See the License for the specific language governing permissions and }
24+
{ limitations under the License. }
25+
{ }
26+
{******************************************************************************}
27+
unit DResources;
28+
29+
interface
30+
31+
uses
32+
System.SysUtils, System.Classes, Vcl.BaseImageCollection, Vcl.ImageCollection,
33+
System.ImageList, Vcl.ImgList, Vcl.VirtualImageList;
34+
35+
type
36+
TdmResources = class(TDataModule)
37+
ImageCollection: TImageCollection;
38+
private
39+
{ Private declarations }
40+
public
41+
{ Public declarations }
42+
end;
43+
44+
var
45+
dmResources: TdmResources;
46+
47+
implementation
48+
49+
{%CLASSGROUP 'Vcl.Controls.TControl'}
50+
51+
{$R *.dfm}
52+
53+
end.

0 commit comments

Comments
 (0)