using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Media.Imaging; namespace Tango.Video.DirectShow.EventArguments { public class FrameReceivedEventArgs : EventArgs { public FrameReceivedEventArgs(WriteableBitmap bs) { BitmapSource = bs; } public WriteableBitmap BitmapSource { get; private set; } } }