V. Panchenko
V. Panchenko

Reputation: 814

Using MetroFramework in VS2013

guys! I want use MetroFramework in my Visual Studio Express 2013. What did I do:

  1. Follow to Tools -> Library Package Manager -> Package Manager Console
  2. Enter this string to it: Install-Package Winform.Metroframework.Install
  3. Get "installation finished successfully" message
  4. In the file "Form1.cs" I changed public partial class Form1 : Form to public partial class Form1 : MetroFramework.Forms.MetroForm. From constructor it looks like correct MetroForm, but when I try to add any control I get this error:

MetroFramework using error

How can I fix it?

Upvotes: 0

Views: 647

Answers (1)

Akshay Khade
Akshay Khade

Reputation: 57

I think the working project is in this package.

Install-Package MetroFramework

I am also using metroframework which is from github. I also make some changes where I want. so i'll recommend you to download from this link

Upvotes: 1

Related Questions