Background image

0
0

How can i disable background image from code and set just one color?

  • You must to post comments
0
0

Hi Nick,

actually it´s much easier to use:

this.Wallpaper = “blank”;

Since you did not explicitly mention which background image you intend to disable, please let us know if you are searching for a solution for other controls than the desktop.

Thanks in advance.

Best regards
Frank

  • Nick Sidoreyko
    Hi, I just want to disable all wallpapers and set some plain color.
  • You must to post comments
0
0

Hi Nick,

there are several ways to achieve that. One is to use a mixin. Just place a file called xxx.mixin.theme with the following content in your projects theme folder:

{
“appearances”:
{
“desktop”: {
“states”: {
“default”: {
“properties”: {
“wallpaper”: “”
}
}
}
}
}
}

Then you can use the BackColor property of your desktop to set the color you want.

Hope that helps.

Best regards
Frank

PS: Wordpress editor destroyed formatting, here is how it looks like:

wallpaper

Attachment
  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.