//-----------------------------------------------------------------------------------------------------------------------------------
        //--------------------------------------------*********Botoes**********--------------------------------------------------------------
        //-----------------------------------------------------------------------------------------------------------------------------------

        private void BtVoltar_Click(object sender, RoutedEventArgs e)
        {
            OpcoesView opcoesView = new OpcoesView();

            ConfiguracoesDeView.ConfigurarWindow(this, opcoesView);
            opcoesView.Show();
            this.Close();
        }
        private void SairDaTela()
        {
            OpcoesView opcoesView = new OpcoesView();

            ConfiguracoesDeView.ConfigurarWindow(this, opcoesView);
            opcoesView.Show();
            this.Close();
        }
        private void BtSalvar_Click(object sender, RoutedEventArgs e)
        {
            string msg = PagamentosViewModel.SalvarNovoPagamento(out bool camposEmBranco);

            if (camposEmBranco)
            {
                MessageBox.Show(msg, "Campos Obrigatorios não preenchidos!");
            }
            else
            {
                MessageBox.Show(msg, "Aviso!");
                OpcoesView opcoesView = new OpcoesView();
                ConfiguracoesDeView.ConfigurarWindow(this, opcoesView);
                opcoesView.Show();
                this.Close();
            }
        }
        private void BtEntrar_Click(object sender, RoutedEventArgs e)
        {
            LoginViewModel.Senha = boxSenha.Password;
            bool loginValido = LoginViewModel.VerificarEntrar();

            if (loginValido)
            {
                OpcoesView opcoesView = new OpcoesView();

                ConfiguracoesDeView.ConfigurarWindow(this, opcoesView);

                opcoesView.Show();
                this.Close();
            }
            else
            {
                MessageBox.Show("Verifique os dados", "Login Inválido!");
                boxSenha.Password = "";
            }
        }