An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# CommandLinkButton
Native command link button for C# WinForms.

[![Downloads](https://img.shields.io/nuget/v/CommandLinkButton?logo=nuget&logoColor=nuget&style=for-the-badge)](https://www.nuget.org/packages/CommandLinkButton)
[![Downloads](https://img.shields.io/nuget/dt/CommandLinkButton?logo=nuget&logoColor=nuget&style=for-the-badge)](#)

## Usage
```csharp
using System.Windows.Forms;

CommandLinkButton button = new CommandLinkButton()
{
Text = "Hello World"
};
this.Controls.Add(button);
```