Example #1
0
 private void initBanner(string imagePath)
 {
     try { _bannerImage = Banner.FromFile(imagePath); }
     catch (System.IO.FileNotFoundException ex)
     {
         ErrorLogger.Log(ex);
         _bannerImage = Banner.Empty;
     }
 }