Esempio n. 1
0
        public void Configuration()
        {
            if (App.Riviera == null)
            {
                App.Riviera = new RivieraApplication();
            }
            WinAppSettings win = new WinAppSettings();

            win.ShowDialog();
        }
Esempio n. 2
0
 static void Main(string[] args)
 {
     try
     {
         if (App.Riviera == null)
         {
             App.Riviera = new RivieraApplication();
         }
         WinAppSettings win = new WinAppSettings();
         win.ShowDialog();
     }
     catch (Exception exc)
     {
         Console.WriteLine(exc.Message);
     }
 }