17 lines
322 B
C#
17 lines
322 B
C#
using System.Windows.Forms;
|
|
|
|
namespace Volian.Controls.Library
|
|
{
|
|
//ToolStripMenuItem with Added Value Property
|
|
public class ToolStripMenuItemwithValue : ToolStripMenuItem
|
|
{
|
|
public readonly object Value;
|
|
|
|
public ToolStripMenuItemwithValue(string text, object value)
|
|
{
|
|
Value = value;
|
|
Text = text;
|
|
}
|
|
}
|
|
}
|