I have a button that when you click it a popup is supposed to be displayed just showing a simple text message until the user clicks on the canvas. Do I have to do something like this in my button click method?:
Window win2 = new Window();
win2.Show();
this.Close();
I just don't want to have another .xaml file for that window when all it's going to be doing is displaying a message for a short amount of time. Right now I'm using a Popup TextBlock but it's not quite what I want, since I can't make it movable.