working on configuration class model

This commit is contained in:
schedpas
2020-07-14 13:29:55 +02:00
parent dc933f2a27
commit 8104dec0e0
9 changed files with 297 additions and 21 deletions

View 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

View File

@@ -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">