C2024-047 Redesign PROMS Security Dialog

This commit is contained in:
2025-10-20 13:48:02 -04:00
parent 7b7f235354
commit ff3daff15a
6 changed files with 944 additions and 783 deletions

View 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;
}
}
}