简体   繁体   中英

How to add ui frameworks to a c# form

overflow, im having trouble trying to add a ui framework , for exmple metro framework, to my c# form.

I know that i have to include the reference and include it with

using MetroFramework.Forms;

but im not sure what else to do here and when ever i try and google it, i just get websites that try and sell me a framework package.

Here is my code:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using MetroFramework.Forms;


namespace FrameworkTest
{
public partial class Form1
{
    public Form1()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {

    }
}

I know this may be a silly question but any help would be much appreciated.

Thanks to Crowcoder I found out that I was supposed to add MetroForm after Form1 like:

public partial class Form1 : MetroForm {
   //Code goes here
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM