private void buttonBrowse_Click(object sender, RoutedEventArgs e)
        {
            Tuple <string, string> getValue = CountClass.OpenFile();

            try
            {
                txtMain.Text    = getValue.Item1;
                lblPath.Content = getValue.Item2;
            }
            catch (System.NullReferenceException) { }
        }