개정판 f65e6c02
debug_SNI 추가
Change-Id: I46d431ca15362882a9ab7e8dd7600371f47471de
MarkupToPDF/Common/CommentUserInfo.cs | ||
---|---|---|
53 | 53 |
private void CommentUserInfo_MouseLeave(object sender, System.Windows.Input.MouseEventArgs e) |
54 | 54 |
{ |
55 | 55 |
this.IsMouseOver = false; |
56 |
if (this.StrokeColor != null)
|
|
56 |
if (this.StrokeColor != this._TempBorderBrush)
|
|
57 | 57 |
{ |
58 | 58 |
this.StrokeColor = this._TempBorderBrush; |
59 | 59 |
this.UpdateLayout(); |
... | ... | |
63 | 63 |
private void CommentUserInfo_MouseEnter(object sender, System.Windows.Input.MouseEventArgs e) |
64 | 64 |
{ |
65 | 65 |
this.IsMouseOver = true; |
66 |
if (this.StrokeColor != null) |
|
66 |
|
|
67 |
OnMouseHover(); |
|
68 |
} |
|
69 |
|
|
70 |
public void OnMouseHover() |
|
71 |
{ |
|
72 |
if (this.StrokeColor != this._HoverBorderBrush) |
|
67 | 73 |
{ |
68 | 74 |
this._TempBorderBrush = this.StrokeColor; |
69 | 75 |
this.StrokeColor = this._HoverBorderBrush; |
내보내기 Unified diff