blob: 9dd570e8599753ca97f5c22c6633a0ba3936b169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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; }
}
}
|