C2024-047 Redesign PROMS Security Dialog
This commit is contained in:
16
PROMS/Volian.Controls.Library/ToolStripMenuItemwithValue.cs
Normal file
16
PROMS/Volian.Controls.Library/ToolStripMenuItemwithValue.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user