Answer the question
In order to leave comments, you need to log in
How to hide the form after clicking the "Open" button in the OpenFileDialog?
How can I hide the current window after the user clicks the "Open" button in the OpenFileDialog?
OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.ShowDialog();
Answer the question
In order to leave comments, you need to log in
if (ofd.ShowDialog() == true)
{
Opacity = 0f;
}
Opacity = 1.0f;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question