2025-04-18 01:28:32 +03:00
# Check box option
2025-04-12 01:36:03 +03:00
In the TPL:
2025-04-12 01:36:45 +03:00
```
2025-04-12 01:36:03 +03:00
< div class = "options-section" >
< h4 > Background effects< / h4 >
< p > On the desktop application, it's possible to use a semi-transparent background tinted in the colors of the user's wallpaper to add a touch of color.< / p >
< div class = "col-6 side-checkbox" >
< label class = "form-check" >
< input type = "checkbox" class = "background-effects form-check-input" / >
Enable background effects (Windows 11 only)
< / label >
< / div >
< / div >
```
In `doRender()` :
```
doRender() {
this.$backgroundEffects = this.$widget.find("input.background-effects");
this.$backgroundEffects.on("change", () => this.updateCheckboxOption("backgroundEffects", this.$backgroundEffects));
}
```
In `optionsLoaded(options)` :
```
async optionsLoaded(options) {
this.setCheckboxState(this.$backgroundEffects, options.backgroundEffects);
}
```