개정판 a342d378
- KCOM_Blend.sln 추가
Change-Id: I1fd4703aa2ce4c5f73ac44e711d5d42ee5f350d1
MarkupToPDF/Common/CommentUserInfo.cs | ||
---|---|---|
27 | 27 |
|
28 | 28 |
public string Memo { get; set; } |
29 | 29 |
public string MarkupInfoID { get; set; } |
30 |
public bool IsMouseOver { get; set; }
|
|
30 |
public bool IsMouseEnter { get; set; }
|
|
31 | 31 |
public bool IsNew { get; set; } |
32 | 32 |
public string CommentID { get; set; } |
33 | 33 |
public string SymbolID { get; set; } |
... | ... | |
52 | 52 |
|
53 | 53 |
private void CommentUserInfo_MouseLeave(object sender, System.Windows.Input.MouseEventArgs e) |
54 | 54 |
{ |
55 |
this.IsMouseOver = false;
|
|
55 |
this.IsMouseEnter = false;
|
|
56 | 56 |
if (this.StrokeColor != this._TempBorderBrush) |
57 | 57 |
{ |
58 | 58 |
this.StrokeColor = this._TempBorderBrush; |
... | ... | |
62 | 62 |
|
63 | 63 |
private void CommentUserInfo_MouseEnter(object sender, System.Windows.Input.MouseEventArgs e) |
64 | 64 |
{ |
65 |
this.IsMouseOver = true;
|
|
65 |
this.IsMouseEnter = true;
|
|
66 | 66 |
|
67 | 67 |
OnMouseHover(); |
68 | 68 |
} |
내보내기 Unified diff