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;
|
||||
}
|
||||
}
|
||||
}
|
@@ -384,6 +384,9 @@
|
||||
<Compile Include="TablePropertiesControl.Designer.cs">
|
||||
<DependentUpon>TablePropertiesControl.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ToolStripMenuItemwithValue.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="TransPanel.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
|
Reference in New Issue
Block a user