private void Select_currency(object sender, RoutedEventArgs e)
 {
     SelectCurrencyDialog currency_selection_dialog = new SelectCurrencyDialog();
     if (currency_selection_dialog.Custom_show_dialog())
     {
         EditRegistryDialogCurrencyButton.Content = currency_selection_dialog.selected_row.Currency_name;
     }
 }
        private void Select_currency(object sender, RoutedEventArgs e)
        {
            SelectCurrencyDialog category_selection_dialog = new SelectCurrencyDialog();

            if (category_selection_dialog.Custom_show_dialog())
            {
                this.AdvanceSearchDialogCurrencyButton.Content = category_selection_dialog.selected_row.Currency_name;
            }
        }
        private void Select_currency(object sender, RoutedEventArgs e)
        {
            SelectCurrencyDialog currency_selection_dialog = new SelectCurrencyDialog();

            if (currency_selection_dialog.Custom_show_dialog())
            {
                SearchResultsCurrencyButton.Content = currency_selection_dialog.selected_row.Currency_name;
                GlobalVariables.working_currency    = currency_selection_dialog.selected_row;
                this.Set_rows(this.available_rows);
            }
        }