개정판 cdfb57ff
zoom control 이벤트 추가
mainmenu 수정
app 수정
Change-Id: I0d007c3a3c412b7fbe6e2a52bafb932e1a7b9f03
ZoomAndPan/ZoomAndPanControl.cs | ||
---|---|---|
17 | 17 |
/// </summary> |
18 | 18 |
private FrameworkElement content; |
19 | 19 |
|
20 |
public event RoutedEventHandler ScaleChanged; |
|
20 | 21 |
/// <summary> |
21 | 22 |
/// The transform that is applied to the content to scale it by 'ContentScale' |
22 | 23 |
/// </summary> |
... | ... | |
666 | 667 |
c.scrollOwner.InvalidateScrollInfo(); |
667 | 668 |
} |
668 | 669 |
|
670 |
if(c.ScaleChanged != null) |
|
671 |
{ |
|
672 |
c.ScaleChanged(c, new RoutedEventArgs()); |
|
673 |
} |
|
674 |
|
|
669 | 675 |
} |
670 | 676 |
#endregion |
671 | 677 |
|
내보내기 Unified diff