dennismagno / metroframework-modern-ui

My humble attempt to bring the new Modern UI alias Metro UI of Windows 8 to .NET Windows Forms applications.
http://dennismagno.github.io/metroframework-modern-ui
Other
861 stars 1.08k forks source link

Form just show as Black and #93

Open CDDFERREIRA opened 5 years ago

CDDFERREIRA commented 5 years ago

Greetings,

Looks like a pretty good modern design, I have used the demo and was pretty amazed. However, I havent been able to use it so far. I have tried downloading the NuGet package or download the zip from GitHub and add the .dll to the project.

When I swap the initial project winform to MetroForm, it compiles, and shows on the editor Ok. However, when I run it on debug it just a "empty" black, I cannot see any detail from the form. image

CDDFERREIRA commented 5 years ago

That "black" window on the right side it's the actual form that display on the design as: image

ghost commented 4 years ago

try adding:

using MetroFramework.Forms; using MetroFramework.Drawing; using MetroFramework.Controls;

then change:

public partial class Form1: MetroForm

to:

public partial class Form1 : MetroFramework.Forms.MetroForm