Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
Auto/Light/Dark) and an accent color — that you can read and change at run time.StiUXTheme; ApplyNewTheme switches them live:// Read the current appearance
switch (StiUXTheme.Appearance)
{
case StiThemeAppearance.Auto: comboBoxAppearance.SelectedIndex = 0; break;
case StiThemeAppearance.Light: comboBoxAppearance.SelectedIndex = 1; break;
case StiThemeAppearance.Dark: comboBoxAppearance.SelectedIndex = 2; break;
}
// Apply a new appearance and accent color
StiUXTheme.ApplyNewTheme(StiThemeAppearance.Dark, StiThemeAccentColor.Blue);StiUXTheme.Appearance — Auto, Light or Dark; Auto follows the operating-system setting.StiUXTheme.AccentColor — Blue, Violet, Carmine, Teal … the highlight color of the UI.ApplyNewTheme(appearance, accent) — repaints the viewer and designer immediately.