working on configuration class model
This commit is contained in:
18
Pilz/GeneralEventArgs/GetValueEventArgs.vb
Normal file
18
Pilz/GeneralEventArgs/GetValueEventArgs.vb
Normal file
@@ -0,0 +1,18 @@
|
||||
Namespace GeneralEventArgs
|
||||
|
||||
Public Class GetValueEventArgs(Of T)
|
||||
Inherits EventArgs
|
||||
|
||||
Public Property Value As T
|
||||
|
||||
Public Sub New()
|
||||
MyBase.New
|
||||
End Sub
|
||||
|
||||
Public Sub New(value As T)
|
||||
MyBase.New
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
|
||||
End Namespace
|
||||
@@ -66,6 +66,7 @@
|
||||
<Import Include="System.Threading.Tasks" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="GeneralEventArgs\GetValueEventArgs.vb" />
|
||||
<Compile Include="HelpfulFunctions.vb" />
|
||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||
<Compile Include="My Project\Application.Designer.vb">
|
||||
|
||||
Reference in New Issue
Block a user