I have developed a windows phone application, i want that app to be run in light theme, irrespective of what user have set. means is there any way to set a default theme for
For Windows phone 8.1 you can use:
Or
public App() { this.RequestedTheme = ApplicationTheme.Light; this.InitializeComponent(); this.Suspending += this.OnSuspending; }
Source : Windows phone 8 How to be always on one theme even if phone's theme changed