Maycon
Maycon
CC#
Created by Maycon on 2/16/2024 in #help
Add custom font in c# winforms
I'm trying to add a custom font to my C# winforms project and I get this error when selecting the font: Only TrueType fonts are supported, this is not a TrueType font Does anyone know how I can solve it? the font is already in TTF
3 replies
CC#
Created by Maycon on 2/1/2024 in #help
✅ C# dialog form with blur background
No description
5 replies
CC#
Created by Maycon on 1/31/2024 in #help
border style error c#
I am mirroring a user control within a panel like this:
private Optionals.Discord discord;



private void Discord()
{
discord= new Optionals.Discord();

discord.Dock = DockStyle.Top;

guna2Panel1.Controls.Add(discord);
}



public Form1()
{
InitializeComponent();
Discord();
}
private Optionals.Discord discord;



private void Discord()
{
discord= new Optionals.Discord();

discord.Dock = DockStyle.Top;

guna2Panel1.Controls.Add(discord);
}



public Form1()
{
InitializeComponent();
Discord();
}
It's working correctly, but my guna2panel1 has a border, and when I use this code to mirror the user control, the border disappears. Does anyone know of a solution? c# winforms .net
1 replies
CC#
Created by Maycon on 1/31/2024 in #help
Encrypt C# code
I work with .net c# winforms, selling my application to common users, however, a lot of people try to see the codes of my application, they wanted to know some solution to encrypt the code
8 replies