Hi, I'm not able to set propperties that are not a number, but as a list.
example:
This is how I defined the properties:
<setting propertyKey="@Properties.BackgroundColor" title="@Strings.BackgroundColorTitle">
<settingConfig type="list">
<listEntry value="0x000000">@Strings.ColorBlack</listEntry>
<listEntry value="0x555555">@Strings.ColorDarkGray</listEntry>
<listEntry value="0xAAAAAA">@Strings.ColorLightGray</listEntry>
<listEntry value="0xFFFFFF">@Strings.ColorWhite</listEntry>
<listEntry value="0xFFFFAA">@Strings.ColorSand</listEntry>
</settingConfig>
</setting>
//in my code I have something like this
var bgColor = 0x000000;
apProperties.setProperty("BackgroundColor", bgColor );
but it doesn't work.
I need to set the value in settings programmaticaly.
Have you anyone some hint? There is no info in the documentation how to manage the settings.
second question:
Why the simulator doesn't change the settings values (I tested numbers), It works in my watch, but not in the simulator .