convert VB to C#
This commit is contained in:
14
Pilz.UI/PaintingControl/EventArgs/PaintingObjectEventArgs.cs
Normal file
14
Pilz.UI/PaintingControl/EventArgs/PaintingObjectEventArgs.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Pilz.UI
|
||||
{
|
||||
public class PaintingObjectEventArgs : EventArgs
|
||||
{
|
||||
public PaintingObject[] PaintingObjects { get; private set; } = null;
|
||||
|
||||
internal PaintingObjectEventArgs(PaintingObject[] paintingObjects)
|
||||
{
|
||||
PaintingObjects = paintingObjects;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user