I\'m trying to create a custom MessageBox by using a WPF Window that is c开发者_JAVA百科alled with ShowDialog().
I have a Window with a Grid that is making a select from MySQL, and using the .Show() function insted of ShowDialog().I can open the same w开发者_运维知识库indow a second time to have two instances of
I have a ShowDialog that takes several parameters.Is there a way to also pass it a delegate to handle an event on the parent form?(As opposed to instantiating the dialog, then adding the event, then c
I am testing my application on an LG Eve phone. I have an application that tries to download something from the web, and when it throws an exception, it is supposed to launch an alertdialog saying tha
I have three forms: A, B an开发者_开发问答d C. Upon a button being clicked, A displays B. Similarly, B displays C. Both using the ShowDialog() method.
I have a winforms application that doesn\'t really have a main form - it\'s just a simple file handling tool so it doesn\'开发者_如何学Pythont really need one.
Trying to open a file dialog but I get an exception when calling ShowDialog. This pice of code have always worked fine but I think when I upgrade to Silverlight 4 it caused some problem.
I have a borderless Windows Forms application. The main window creates other forms (simple dialogs where I can click yes or no) with ShowDialog().
I created a WPF Window and made it a MEF Export. I can do a ShowDialog once on the MEF Import but the second time it aborts because the M开发者_Go百科EF component was closed by the first ShowDialog.
Working in .开发者_开发知识库NET Compact Framework, C#, .Net 3.5, Visual Studio 2008. Targeting Windows Mobile and CE devices from the same project (it\'s a CE app, runs on both types of devices).