private void btn_verFacturas_Click(object sender, RoutedEventArgs e)
        {
            FRM_Facturas reporte = new FRM_Facturas();

            reporte.ShowDialog();
            this.Close();
        }
        private void btn_Administracion_Facturas_Click(object sender, RoutedEventArgs e)
        {
            this.Hide();
            FRM_Facturas paginaAC = new FRM_Facturas();

            paginaAC.ShowDialog();
            this.Close();
        }