TIPOS DE MESSAGE_BOX . SHOW

 PP

MessageBoxResult m = MessageBox.Show("The file will be saved here.", "File Save", MessageBoxButton.OKCancel);
if(m == m.Yes)
{
    // Do something
}
else if (m == m.No)
{
    // Do something else
}

Comentarios

Entradas populares de este blog

METODOS SET Y GET A LA BASE DE DATOS

EVENTOS DE UN DATADRIDVIEW

PINTAR UN DATAGRIDVIEW