showdialog box
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Usually as below if you want to check the result of a open file dialog you use the following code: if (fDialog.ShowDialog() == DialogResult.OK) { MessageBox.Show("User clicked on OK / Open"); } However this does not seem to work when developing a Windows Presentation Foundation based application, any suggestions ?
-
Usually as below if you want to check the result of a open file dialog you use the following code: if (fDialog.ShowDialog() == DialogResult.OK) { MessageBox.Show("User clicked on OK / Open"); } However this does not seem to work when developing a Windows Presentation Foundation based application, any suggestions ?