private void SearchNoteButtonClicked(object sender, EventArgs args)
 {
     if (nameForSearch.Text.Equals(String.Empty))
     {
         MessageBox.Show("Имя заметки для поиска не указано! Укажите имя.", "Warning", MessageBoxButtons.OK);
     }
     else
     {
         _tempList = NotesList.Where(note => note.Name.Contains(nameForSearch.Text)).ToList();
         if (_tempList == null)
         {
             MessageBox.Show("Заметка с таким именем не найдена.", "Warning", MessageBoxButtons.OK);
             return;
         }
         _isSearching = true;
         UpdateNoteListBox();
     }
 }