Skip to content

Commit d690921

Browse files
Version 3.8.2
- Added progressbar to StyledDialog component - Fixed Sort for TStyledToolButtons in 64 bit - Fix painting of StyledCategoryButton when selected - Added support for Delphi 13 Florence - Setup Updated for Delphi 13 Florence
1 parent 5e708ba commit d690921

32 files changed

+1474
-123
lines changed

Demos/Delphi12/BuildAndSignDemo.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
@echo *****************************************
44
call "C:\BDS\Studio\23.0\bin\rsvars.bat"
55
msbuild.exe ".\StyledComponentsDemo.dproj" /target:Clean;Build /p:Platform=Win64 /p:config=release
6+
msbuild.exe ".\StyledComponentsDemo.dproj" /target:Clean;Build /p:Platform=Win32 /p:config=release
67

78
@echo ****************************************
89
@echo SIGN StyledComponentsDemo with Delphi 12

Demos/Delphi12/StyledComponentsDemo.dproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<PropertyGroup>
33
<ProjectGuid>{B1E35C67-197F-4D40-B5C8-6C6A7E9AB5EE}</ProjectGuid>
4-
<ProjectVersion>20.2</ProjectVersion>
4+
<ProjectVersion>20.3</ProjectVersion>
55
<FrameworkType>VCL</FrameworkType>
66
<Base>True</Base>
77
<Config Condition="'$(Config)'==''">Debug</Config>
8-
<Platform Condition="'$(Platform)'==''">Win32</Platform>
8+
<Platform Condition="'$(Platform)'==''">Win64</Platform>
99
<ProjectName Condition="'$(ProjectName)'==''">StyledComponentsDemo</ProjectName>
1010
<TargetedPlatforms>3</TargetedPlatforms>
1111
<AppType>Application</AppType>

Demos/Delphi13/BuildAndSignDemo.cmd

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
@echo *****************************************
2+
@echo BUILD StyledComponentsDemo with Delphi 13
3+
@echo *****************************************
4+
call "C:\BDS\Studio\37.0\bin\rsvars.bat"
5+
msbuild.exe ".\StyledComponentsDemo.dproj" /target:Clean;Build /p:Platform=Win64 /p:config=release
6+
msbuild.exe ".\StyledComponentsDemo.dproj" /target:Clean;Build /p:Platform=Win32 /p:config=release
7+
8+
@echo ****************************************
9+
@echo SIGN StyledComponentsDemo with Delphi 13
10+
@echo ****************************************
11+
call D:\ETHEA\Certificate\SignFileWithSectico.bat D:\ETHEA\StyledComponents\Demos\Bin\Win64\StyledComponentsDemo.exe
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{******************************************************************************}
2+
{ }
3+
{ TStyledComponents Demo }
4+
{ Full demo of Styled Components and Styled TaskDialog/MessageDialog }
5+
{ }
6+
{ Copyright (c) 2022-2025 (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+
program StyledComponentsDemo;
28+
29+
uses
30+
Midaslib,
31+
Vcl.Forms,
32+
Vcl.Themes,
33+
Vcl.Styles,
34+
uSettings in '..\source\uSettings.pas',
35+
MainDemoForm in '..\source\MainDemoForm.pas' {frmMain},
36+
DResources in '..\source\DResources.pas' {dmResources: TDataModule},
37+
DemoWelcomeForm in '..\source\DemoWelcomeForm.pas' {WelcomeForm},
38+
FAboutForm in '..\source\FAboutForm.pas' {fmAbout},
39+
AutoClickForm in '..\source\AutoClickForm.pas' {fmAutoClick},
40+
BitBtnForm in '..\source\BitBtnForm.pas' {fmBitBtn},
41+
ControlListForm in '..\source\ControlListForm.pas' {fmControlList},
42+
RoundedCornersForm in '..\source\RoundedCornersForm.pas' {fmRoundedCorners},
43+
StyledButtonGroupForm in '..\source\StyledButtonGroupForm.pas' {fmStyledButtonGroup},
44+
StyledButtonsForm in '..\source\StyledButtonsForm.pas' {fmStyledButtons},
45+
StyledButtonVCLStylesForm in '..\source\StyledButtonVCLStylesForm.pas' {fmStyledButtonVCLStyles},
46+
StyledCategoryButtonsForm in '..\source\StyledCategoryButtonsForm.pas' {fmStyledCategoryButtons},
47+
StyledDbNavigatorForm in '..\source\StyledDbNavigatorForm.pas' {fmStyledDbNavigator},
48+
StyledDialogDemoForm in '..\source\StyledDialogDemoForm.pas' {fmStyledTaskDialog},
49+
// This form is an example of Custom Form for TaskDialog
50+
// StyledTaskDialogAnimCustomForm in '..\source\StyledTaskDialogAnimCustomForm.pas' {fmStyledTaskDialogAnimCustom},
51+
StyledToolbarForm in '..\source\StyledToolbarForm.pas' {fmStyledToolbar};
52+
53+
{$R *.res}
54+
55+
begin
56+
Application.Initialize;
57+
Application.MainFormOnTaskBar := True;
58+
Application.ActionUpdateDelay := 50;
59+
Application.Title := 'Styled Components Demos with Delphi 13';
60+
//Uses System Style for border / shadow of Forms
61+
TStyleManager.FormBorderStyle := TStyleManager.TFormBorderStyle.fbsSystemStyle;
62+
Application.CreateForm(TdmResources, dmResources);
63+
Application.CreateForm(TfrmMain, frmMain);
64+
Application.OnException := frmMain.ShowError;
65+
Application.Run;
66+
end.
Lines changed: 166 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,166 @@
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<ProjectGuid>{17D66ECA-B271-4EE6-9415-DF94E80C26FA}</ProjectGuid>
4+
<ProjectVersion>20.4</ProjectVersion>
5+
<FrameworkType>VCL</FrameworkType>
6+
<Base>True</Base>
7+
<Config Condition="'$(Config)'==''">Debug</Config>
8+
<Platform Condition="'$(Platform)'==''">Win64</Platform>
9+
<ProjectName Condition="'$(ProjectName)'==''">StyledComponentsDemo</ProjectName>
10+
<TargetedPlatforms>3</TargetedPlatforms>
11+
<AppType>Application</AppType>
12+
<MainSource>StyledComponentsDemo.dpr</MainSource>
13+
</PropertyGroup>
14+
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
15+
<Base>true</Base>
16+
</PropertyGroup>
17+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
18+
<Base_Win32>true</Base_Win32>
19+
<CfgParent>Base</CfgParent>
20+
<Base>true</Base>
21+
</PropertyGroup>
22+
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
23+
<Base_Win64>true</Base_Win64>
24+
<CfgParent>Base</CfgParent>
25+
<Base>true</Base>
26+
</PropertyGroup>
27+
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
28+
<Cfg_1>true</Cfg_1>
29+
<CfgParent>Base</CfgParent>
30+
<Base>true</Base>
31+
</PropertyGroup>
32+
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
33+
<Cfg_2>true</Cfg_2>
34+
<CfgParent>Base</CfgParent>
35+
<Base>true</Base>
36+
</PropertyGroup>
37+
<PropertyGroup Condition="'$(Base)'!=''">
38+
<DCC_DcuOutput>..\Dcu\D13\$(Platform)</DCC_DcuOutput>
39+
<DCC_E>false</DCC_E>
40+
<DCC_N>false</DCC_N>
41+
<DCC_S>false</DCC_S>
42+
<DCC_F>false</DCC_F>
43+
<DCC_K>false</DCC_K>
44+
<VerInfo_Locale>1033</VerInfo_Locale>
45+
<SanitizedProjectName>StyledComponentsDemo</SanitizedProjectName>
46+
<DCC_ExeOutput>..\Bin\$(Platform)</DCC_ExeOutput>
47+
<VerInfo_Keys>CompanyName=Ethea S.r.l.;FileDescription=Styled Components Demo;FileVersion=1.0.0.0;InternalName=;LegalCopyright=Copyright Ethea S.r.l.;LegalTrademarks=;OriginalFilename=;ProgramID=;ProductName=;ProductVersion=1.0;Comments=</VerInfo_Keys>
48+
<DCC_UnitSearchPath>..\..\source;..\source;..\..\packages;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
49+
<Custom_Styles>&quot;Aqua Light Slate|VCLSTYLE|$(BDSCOMMONDIR)\Styles\AquaLightSlate.vsf&quot;;Glow|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Glow.vsf;&quot;Iceberg Classico|VCLSTYLE|$(BDSCOMMONDIR)\Styles\IcebergClassico.vsf&quot;;&quot;Lavender Classico|VCLSTYLE|$(BDSCOMMONDIR)\Styles\LavenderClassico.vsf&quot;;Sky|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Sky.vsf;&quot;Slate Classico|VCLSTYLE|$(BDSCOMMONDIR)\Styles\SlateClassico.vsf&quot;;&quot;Tablet Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\TabletDark.vsf&quot;;&quot;Tablet Light|VCLSTYLE|$(BDSCOMMONDIR)\Styles\TabletLight.vsf&quot;;Windows10|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10.vsf;&quot;Windows10 Blue|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10Blue.vsf&quot;;&quot;Windows10 Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10Dark.vsf&quot;;&quot;Windows10 Green|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10Green.vsf&quot;;&quot;Windows10 Purple|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10Purple.vsf&quot;;&quot;Windows10 SlateGray|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10SlateGray.vsf&quot;;&quot;Windows11 Impressive Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_Impressive_Dark.vsf&quot;;&quot;Windows11 Impressive Dark SE|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_Impressive_Dark_SE.vsf&quot;;&quot;Windows11 Impressive Light|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_Impressive_Light.vsf&quot;;&quot;Windows11 Impressive Light SE|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_Impressive_Light_SE.vsf&quot;;&quot;Windows11 MineShaft|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_MineShaft.vsf&quot;;&quot;Windows11 Modern Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_Modern_Dark.vsf&quot;;&quot;Windows11 Modern Light|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_Modern_Light.vsf&quot;;&quot;Windows11 Polar Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_Polar_Dark.vsf&quot;;&quot;Windows11 Polar Light|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_Polar_Light.vsf&quot;;&quot;Windows11 White Smoke|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_WhiteSmoke.vsf&quot;;Amakrits|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Amakrits.vsf;&quot;Amethyst Kamri|VCLSTYLE|$(BDSCOMMONDIR)\Styles\AmethystKamri.vsf&quot;;&quot;Aqua Graphite|VCLSTYLE|$(BDSCOMMONDIR)\Styles\AquaGraphite.vsf&quot;;Auric|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Auric.vsf;Carbon|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Carbon.vsf;&quot;Charcoal Dark Slate|VCLSTYLE|$(BDSCOMMONDIR)\Styles\CharcoalDarkSlate.vsf&quot;;&quot;Cobalt XEMedia|VCLSTYLE|$(BDSCOMMONDIR)\Styles\CobaltXEMedia.vsf&quot;;Copper|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Copper.vsf;CopperDark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\CopperDark.vsf;Coral|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Coral.vsf;&quot;Cyan Dusk|VCLSTYLE|$(BDSCOMMONDIR)\Styles\CyanDusk.vsf&quot;;&quot;Cyan Night|VCLSTYLE|$(BDSCOMMONDIR)\Styles\CyanNight.vsf&quot;;Diamond|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Diamond.vsf;Emerald|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Emerald.vsf;&quot;Emerald Light Slate|VCLSTYLE|$(BDSCOMMONDIR)\Styles\EmeraldLightSlate.vsf&quot;;&quot;Golden Graphite|VCLSTYLE|$(BDSCOMMONDIR)\Styles\GoldenGraphite.vsf&quot;;Jet|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Jet.vsf;Light|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Light.vsf;Luna|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Luna.vsf;Obsidian|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Obsidian.vsf;&quot;Onyx Blue|VCLSTYLE|$(BDSCOMMONDIR)\Styles\OnyxBlue.vsf&quot;;Radiant|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Radiant.vsf;&quot;Ruby Graphite|VCLSTYLE|$(BDSCOMMONDIR)\Styles\RubyGraphite.vsf&quot;;&quot;Sapphire Kamri|VCLSTYLE|$(BDSCOMMONDIR)\Styles\SapphireKamri.vsf&quot;;Silver|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Silver.vsf;&quot;Smokey Quartz Kamri|VCLSTYLE|$(BDSCOMMONDIR)\Styles\SmokeyQuartzKamri.vsf&quot;;Sterling|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Sterling.vsf;&quot;Turquoise Gray|VCLSTYLE|$(BDSCOMMONDIR)\Styles\TurquoiseGray.vsf&quot;;Vapor|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Vapor.vsf;Calypso|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Calypso.vsf;&quot;Calypso LE|VCLSTYLE|$(BDSCOMMONDIR)\Styles\CalypsoLE.vsf&quot;;&quot;Calypso SE|VCLSTYLE|$(BDSCOMMONDIR)\Styles\CalypsoSE.vsf&quot;;&quot;Calypso SLE|VCLSTYLE|$(BDSCOMMONDIR)\Styles\CalypsoSLE.vsf&quot;;&quot;Flat UI Light|VCLSTYLE|$(BDSCOMMONDIR)\Styles\FlatUILight.vsf&quot;;Glossy|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Glossy.vsf;&quot;Lucky Point|VCLSTYLE|$(BDSCOMMONDIR)\Styles\LuckyPoint.vsf&quot;;&quot;Material Oxford Blue|VCLSTYLE|$(BDSCOMMONDIR)\Styles\MaterialOxfordBlue.vsf&quot;;&quot;Material Oxford Blue SE|VCLSTYLE|$(BDSCOMMONDIR)\Styles\MaterialOxfordBlueSE.vsf&quot;;&quot;Material Pattens Blue|VCLSTYLE|$(BDSCOMMONDIR)\Styles\MaterialPattensBlue.vsf&quot;;&quot;Puerto Rico|VCLSTYLE|$(BDSCOMMONDIR)\Styles\PuertoRico.vsf&quot;;Stellar|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Stellar.vsf;&quot;Stellar Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\StellarDark.vsf&quot;;&quot;Wedgewood Light|VCLSTYLE|$(BDSCOMMONDIR)\Styles\WedgewoodLight.vsf&quot;;&quot;Windows10 BlackPearl|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10BlackPearl.vsf&quot;;&quot;Windows10 Blue Whale|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10BlueWhale.vsf&quot;;&quot;Windows10 Blue Whale LE|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10BlueWhaleLE.vsf&quot;;&quot;Windows10 Clear Day|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10ClearDay.vsf&quot;;&quot;Windows10 Malibu|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10Malibu.vsf&quot;;Zircon|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Zircon.vsf;&quot;Zircon SE|VCLSTYLE|$(BDSCOMMONDIR)\Styles\ZirconSE.vsf&quot;</Custom_Styles>
50+
<DCC_Define>UseStyledCompEditorsAtRunTime;SKIA;$(DCC_Define)</DCC_Define>
51+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
52+
<DCC_IntegerOverflowCheck>true</DCC_IntegerOverflowCheck>
53+
<DCC_RangeChecking>true</DCC_RangeChecking>
54+
</PropertyGroup>
55+
<PropertyGroup Condition="'$(Base_Win32)'!=''">
56+
<BT_BuildType>Debug</BT_BuildType>
57+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
58+
<Icon_MainIcon>..\source\StyledButton.ico</Icon_MainIcon>
59+
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
60+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
61+
</PropertyGroup>
62+
<PropertyGroup Condition="'$(Base_Win64)'!=''">
63+
<BT_BuildType>Debug</BT_BuildType>
64+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
65+
<Icon_MainIcon>..\source\StyledButton.ico</Icon_MainIcon>
66+
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
67+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
68+
</PropertyGroup>
69+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
70+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
71+
<DCC_DebugDCUs>true</DCC_DebugDCUs>
72+
<DCC_Optimize>false</DCC_Optimize>
73+
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
74+
<DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
75+
</PropertyGroup>
76+
<PropertyGroup Condition="'$(Cfg_2)'!=''">
77+
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
78+
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
79+
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
80+
<DCC_DebugInformation>0</DCC_DebugInformation>
81+
</PropertyGroup>
82+
<ItemGroup>
83+
<DelphiCompile Include="$(MainSource)">
84+
<MainSource>MainSource</MainSource>
85+
</DelphiCompile>
86+
<DCCReference Include="..\source\uSettings.pas"/>
87+
<DCCReference Include="..\source\MainDemoForm.pas">
88+
<Form>frmMain</Form>
89+
</DCCReference>
90+
<DCCReference Include="..\source\DResources.pas">
91+
<Form>dmResources</Form>
92+
<DesignClass>TDataModule</DesignClass>
93+
</DCCReference>
94+
<DCCReference Include="..\source\DemoWelcomeForm.pas">
95+
<Form>WelcomeForm</Form>
96+
<FormType>dfm</FormType>
97+
</DCCReference>
98+
<DCCReference Include="..\source\FAboutForm.pas">
99+
<Form>fmAbout</Form>
100+
<FormType>dfm</FormType>
101+
</DCCReference>
102+
<DCCReference Include="..\source\AutoClickForm.pas">
103+
<Form>fmAutoClick</Form>
104+
</DCCReference>
105+
<DCCReference Include="..\source\BitBtnForm.pas">
106+
<Form>fmBitBtn</Form>
107+
</DCCReference>
108+
<DCCReference Include="..\source\ControlListForm.pas">
109+
<Form>fmControlList</Form>
110+
</DCCReference>
111+
<DCCReference Include="..\source\RoundedCornersForm.pas">
112+
<Form>fmRoundedCorners</Form>
113+
</DCCReference>
114+
<DCCReference Include="..\source\StyledButtonGroupForm.pas">
115+
<Form>fmStyledButtonGroup</Form>
116+
</DCCReference>
117+
<DCCReference Include="..\source\StyledButtonsForm.pas">
118+
<Form>fmStyledButtons</Form>
119+
</DCCReference>
120+
<DCCReference Include="..\source\StyledButtonVCLStylesForm.pas">
121+
<Form>fmStyledButtonVCLStyles</Form>
122+
</DCCReference>
123+
<DCCReference Include="..\source\StyledCategoryButtonsForm.pas">
124+
<Form>fmStyledCategoryButtons</Form>
125+
</DCCReference>
126+
<DCCReference Include="..\source\StyledDbNavigatorForm.pas">
127+
<Form>fmStyledDbNavigator</Form>
128+
</DCCReference>
129+
<DCCReference Include="..\source\StyledDialogDemoForm.pas">
130+
<Form>fmStyledTaskDialog</Form>
131+
</DCCReference>
132+
<DCCReference Include="..\source\StyledToolbarForm.pas">
133+
<Form>fmStyledToolbar</Form>
134+
</DCCReference>
135+
<BuildConfiguration Include="Base">
136+
<Key>Base</Key>
137+
</BuildConfiguration>
138+
<BuildConfiguration Include="Debug">
139+
<Key>Cfg_1</Key>
140+
<CfgParent>Base</CfgParent>
141+
</BuildConfiguration>
142+
<BuildConfiguration Include="Release">
143+
<Key>Cfg_2</Key>
144+
<CfgParent>Base</CfgParent>
145+
</BuildConfiguration>
146+
</ItemGroup>
147+
<ProjectExtensions>
148+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
149+
<Borland.ProjectType>Application</Borland.ProjectType>
150+
<BorlandProject>
151+
<Delphi.Personality>
152+
<Source>
153+
<Source Name="MainSource">StyledComponentsDemo.dpr</Source>
154+
</Source>
155+
<Excluded_Packages/>
156+
</Delphi.Personality>
157+
<Platforms>
158+
<Platform value="Win32">True</Platform>
159+
<Platform value="Win64">True</Platform>
160+
</Platforms>
161+
</BorlandProject>
162+
<ProjectFileVersion>12</ProjectFileVersion>
163+
</ProjectExtensions>
164+
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
165+
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
166+
</Project>

Demos/source/MainDemoForm.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ procedure TfrmMain.FormClose(Sender: TObject; var Action: TCloseAction);
359359
begin
360360
if StyledTaskMessageDlg('Exit from StyledComponents Demo',
361361
'If you need more info about StyledComponents read the '+
362-
StringToHRef('https://github.com/EtheaDev/StyledComponents/wiki/','wiki section')+' of the project.'+sLineBreak+
362+
StringToHRef('https://ethea.it/docs/styledcomponents/','Documentation Site')+' of the project.'+sLineBreak+
363363
sLineBreak+
364364
'Do you want to exit now?',
365365
mtConfirmation,

Images/SupportingDelphi.jpg

1.29 KB
Loading

0 commit comments

Comments
 (0)