개정판 d18ea2bd
ThumbnailItem 중복 호출 방지
ColorList convert로 변경
Change-Id: Idc6bb06d6d84c78875400fc99cf218cd1368c253
KCOM/Common/ThumbnailItem.cs | ||
---|---|---|
21 | 21 |
public List<SetColorMarkupItem> DisplayColorItems |
22 | 22 |
{ |
23 | 23 |
get { |
24 |
|
|
25 |
if(_DisplayColorItems == null) |
|
26 |
{ |
|
27 |
_DisplayColorItems = new List<SetColorMarkupItem>(); |
|
28 |
} |
|
29 |
|
|
30 | 24 |
return _DisplayColorItems; |
31 | 25 |
} |
32 | 26 |
|
33 | 27 |
set { |
34 |
|
|
35 |
if (_DisplayColorItems != value) |
|
36 |
{ |
|
37 | 28 |
_DisplayColorItems = value; |
38 | 29 |
|
39 | 30 |
NotifyPropertyChanged("DisplayColorItems"); |
40 |
} |
|
41 | 31 |
} |
42 | 32 |
} |
43 | 33 |
|
내보내기 Unified diff