mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-02 07:09:27 +03:00
17 lines
273 B
C#
17 lines
273 B
C#
using System.Windows.Forms;
|
|
|
|
namespace DarkUI
|
|
{
|
|
public class DarkContextMenu : ContextMenuStrip
|
|
{
|
|
#region Constructor Region
|
|
|
|
public DarkContextMenu()
|
|
{
|
|
Renderer = new DarkMenuRenderer();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|