コード例 #1
0
 private bool CanPlay()
 {
     // TODO check apple and google config
     if (cbReaders.SelectedIndex >= 0)
     {
         if (GoogleVasLicense.Loaded() && AppleVasLicense.Loaded())
         {
             return(true);
         }
     }
     return(false);
 }
コード例 #2
0
 private bool CanPlay()
 {
     if (cbReaders.SelectedIndex >= 0)
     {
         if (config.IsValid())
         {
             if (GoogleVasLicense.Loaded())
             {
                 return(true);
             }
         }
     }
     return(false);
 }