In the Browsers.xaml.cs, Add this code:
public override void am_PerformCustomTaskDuringLoadSystem() { // Add Version from the app.config to the status bar if (ap_SystemInfoDisplay != null) { ap_SystemInfoDisplay.am_AddSystemDisplayItemAt(0, new TextBlock { Text = ConfigurationManager.AppSettings["Version"] }); ap_SystemInfoDisplay.am_AddSeparatorAt(0); } base.am_PerformCustomTaskDuringLoadSystem(); }