https://github.com/alphanecron/commandlinkbutton
Native command link button for C# WinForms.
https://github.com/alphanecron/commandlinkbutton
Last synced: about 1 year ago
JSON representation
Native command link button for C# WinForms.
- Host: GitHub
- URL: https://github.com/alphanecron/commandlinkbutton
- Owner: AlphaNecron
- Created: 2021-04-20T13:55:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-20T14:21:48.000Z (about 5 years ago)
- Last Synced: 2025-03-06T01:18:36.674Z (over 1 year ago)
- Language: C#
- Size: 4.88 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CommandLinkButton
Native command link button for C# WinForms.
[](https://www.nuget.org/packages/CommandLinkButton)
[](#)
## Usage
```csharp
using System.Windows.Forms;
CommandLinkButton button = new CommandLinkButton()
{
Text = "Hello World"
};
this.Controls.Add(button);
```