Skip to main content

Posts

Showing posts from April, 2012

C# message box confirmation formate

When we need use Yes/No confirmation from a Meassage Box  we can use the formate. if (MessageBox.Show("Are you sure want to Remove the Record?", "Confirmation", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes) { // Do something }