Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.Net Core Support #178

Closed
furesoft opened this issue Oct 29, 2019 · 4 comments
Closed

.Net Core Support #178

furesoft opened this issue Oct 29, 2019 · 4 comments

Comments

@furesoft
Copy link

Pls enable .Net Core 3.0 Support

@k3ldar
Copy link

k3ldar commented Oct 31, 2019

Need this also please :-)

@PavelTorgashov
Copy link
Owner

For now WinForms .NET Core designer does not support UserControl designer and does not show usercontrols in toolbar.
However you can create FCTB from code.
To do it, just add assembly FastColoredTextBox.dll to project dependencies:
Скриншот 2019-11-02 18 58 01

And then create FCTB from code:

using System;
using System.Windows.Forms;

namespace WindowsFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

            var fctb = new FastColoredTextBoxNS.FastColoredTextBox();
            fctb.Parent = this;
            fctb.Dock = DockStyle.Fill;
        }
    }
}

@flier268
Copy link

#211

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants
@PavelTorgashov @furesoft @k3ldar @flier268 and others