Hello!
There was a question when using the script: I have 4 buttons with text. It is necessary that when you click on the first button, the color of the button and the text changes, and the other three are painted in a completely different color. An example of a script I’m trying to use:
rectangle32 .background = new dundas.controls.SolidColorBrush (new dundas.controls.Color (0xFFFFFF));
label5.fontColor = new dundas.controls.SolidColorBrush (new dundas.controls.Color (0x000F0A));
rectangle33 .background = new dundas.controls.SolidColorBrush (new dundas.controls.Color (0x646464));
label6.fontColor = new dundas.controls.SolidColorBrush (new dundas.controls.Color (0xFFFFFF));
rectangle34 .background = new dundas.controls.SolidColorBrush (new dundas.controls.Color (0x646464));
label7.fontColor = new dundas.controls.SolidColorBrush (new dundas.controls.Color (0xFFFFFF));
rectangle35 .background = new dundas.controls.SolidColorBrush (new dundas.controls.Color (0x646464));
label8.fontColor = new dundas.controls.SolidColorBrush (new dundas.controls.Color (0xFFFFFF));
Everything works, but after a while the dashboard breaks down and cannot be restored.
Error code:Error 1 of 1
Title:
The request is invalid.
Details:
Web response code: Bad Request: (undefined)
Thank you in advance!