I'm looking for a way to change the background of the title bar of a RadWindow.Alert.
I'm looking to mimic the affect that line one has on the title bar without changing the accent color for ALL items.
Ideally, I'd like to be able to pass in the Colors.Red or set a Style Resource somewhere.
01.Windows8TouchPalette.Palette.AccentColor = Colors.Red;02.RadWindow.Alert(new DialogParameters()03.{04. Theme = new Windows8TouchTheme(),05. Content = GetAlarmDialogContent(),06. Closed = OnAlarmDialogClosed,07. OkButtonContent = "Acknowledge",08. Owner = this09.});