https://github.com/hemulgm/fmxchangestyle
FMX style change
https://github.com/hemulgm/fmxchangestyle
delphi firemonkey fmx style style-transfer
Last synced: 28 days ago
JSON representation
FMX style change
- Host: GitHub
- URL: https://github.com/hemulgm/fmxchangestyle
- Owner: HemulGM
- License: mit
- Created: 2022-01-27T05:29:08.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-29T08:24:38.000Z (about 4 years ago)
- Last Synced: 2025-08-31T15:37:21.600Z (6 months ago)
- Topics: delphi, firemonkey, fmx, style, style-transfer
- Language: Pascal
- Homepage:
- Size: 22.5 MB
- Stars: 15
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FMXChangeStyle
FMX style change with use default effects (Transition effects, like TBlurTransitionEffect, TFadeTransitionEffect, ...)
```Pascal
uses
FMX.StyleChanger, FMX.Filter.Effects;
type
EffectClass = TBlurTransitionEffect;
TStyleExt.Change(Self, StyleBookDark,
function(Effect: EffectClass): TBitmap
begin
Result := Effect.Target;
Effect.Progress := 0;
end);
```
