private void appbar_search_Click(object sender, EventArgs e)
 {
     if (SearchPanel.Opacity == 0)
     {
         SearchStoryboard.Begin();
         SearchInputBox.Focus();
         SearchInputBox.SelectAll();
     }
     else
     {
         ProcessSearch(SearchInputBox.Text);
     }
 }