markus / ConvertService / ConverterService / ImageFields / CachedFrame.cs @ ced47e14
이력 | 보기 | 이력해설 | 다운로드 (465 Bytes)
1 | 7ca218b3 | KangIngu | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Windows.Media.Imaging; |
||
6 | |||
7 | |||
8 | namespace ImageFields |
||
9 | { |
||
10 | internal class CachedFrame |
||
11 | { |
||
12 | // Fields |
||
13 | public BitmapFrame frame; |
||
14 | public string path; |
||
15 | |||
16 | // Methods |
||
17 | public CachedFrame(string pathToCache, BitmapFrame frameToCache) |
||
18 | { |
||
19 | this.frame = frameToCache; |
||
20 | this.path = pathToCache; |
||
21 | } |
||
22 | } |
||
23 | } |