Ejemplo n.º 1
0
 void libron_SaveDataRecieved(LibronClass.GetDataState state)
 {
     try
     {
         if (state == LibronClass.GetDataState.Error)
         {
             //lblError.Text = "保存内容の取得に失敗しました。";
             //lblError.Visible = true;
             //tmrError.Start();
         }
         lblDescription.Text           = "[" + libron.selectedPrefecture + "] " + libron.selectedSystemName + "で検索 ";
         lblDescription.Visible        = true;
         libron.DownloadedLibrayNames += new LibronClass.DownloadedLibraryNamesEventHandler(libron_DownloadedLibrayNames);
         libron.DownloadLibraryNames();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }