tags:

views:

73

answers:

0

I have a program that displays and runs C# GUI by

Application.Run(new Dialog());

But it shows absolutely nothing. It used to work as intended, but after I made some changes and my computer crashed, it shows nothing, but it's running. What I mean by it's running is that when I run debugger, it steps into constructors and behave as it should be, but showing nothing.

I've tried

this.show()

in window form constructors and what nots, but nothing worked so far.

Does any body know what's possibly causing it>?