fix / suppress all remaining errors
This commit is contained in:
parent
35337cf3ea
commit
0bd7c40af2
9 changed files with 333 additions and 9200 deletions
|
@ -11,7 +11,7 @@ namespace XeroBrowser
|
|||
{
|
||||
public static AppContainer Container;
|
||||
|
||||
public static TitleBarTabsApplicationContext ApplicationContext;
|
||||
private static TitleBarTabsApplicationContext _applicationContext;
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
|
@ -52,9 +52,9 @@ namespace XeroBrowser
|
|||
Container.SelectedTabIndex = 0;
|
||||
|
||||
try {
|
||||
ApplicationContext = new TitleBarTabsApplicationContext();
|
||||
ApplicationContext.Start(Container);
|
||||
Application.Run(ApplicationContext);
|
||||
_applicationContext = new TitleBarTabsApplicationContext();
|
||||
_applicationContext.Start(Container);
|
||||
Application.Run(_applicationContext);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
|
Reference in a new issue