Exemplo n.º 1
0
 private void ResultList_DoubleClick(object sender, EventArgs e)
 {
     if (ResultList.SelectedIndices.Count > 0)
     {
         int index = ResultList.SelectedIndices[0];
         _mainForm.PlayFromSearchForm(_searchResultInfos[index].Index);
         Close();
     }
 }