개정판 9f473fb7
Zoom window기능 추가
클라우드 모양 높이값 조절 추가
회전 기능 자연스럽게 변경
파노라마 이미지 선택시 제거
Selection 모드 오류 수정
Axis Lock 선택 에러 제거
KCOM/Controls/Panorama.xaml.cs | ||
---|---|---|
54 | 54 |
tileList.Focus(); |
55 | 55 |
} |
56 | 56 |
|
57 |
/// <summary> |
|
58 |
/// 정삼각형을 그리기위한 두 포인트를 계산하여 넘겨줌 |
|
59 |
/// </summary> |
|
60 |
/// <author>humkyung</author> |
|
61 |
/// <date>2018.04.26</date> |
|
62 |
/// <param name="StartP"></param> |
|
63 |
/// <param name="EndP"></param> |
|
64 |
/// <returns></returns> |
|
65 |
|
|
66 |
/// <summary> |
|
67 |
/// |
|
68 |
/// </summary> |
|
69 |
/// <author>Ingu</author> |
|
70 |
/// <date>2018.04.30</date> |
|
71 |
/// <Update>이미지 더블 클릭 시 해당 페이지 이동 후 창 파노라마 닫기</Update> |
|
72 |
/// <param name="sender"></param> |
|
73 |
/// <param name="e"></param> |
|
57 | 74 |
private void Border_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) |
58 | 75 |
{ |
59 | 76 |
if (e.ClickCount >=2) |
60 | 77 |
{ |
61 | 78 |
ViewerDataModel.Instance.SystemMain.dzMainMenu.pageNavigator.GotoPage(((sender as Border).DataContext as ThumbnailItem).PageNumber); |
62 | 79 |
|
63 |
//Panorama infoScreen = (Panorama)this.Parent;
|
|
64 |
//infoScreen.Close();
|
|
80 |
Window window = Window.GetWindow(this);
|
|
81 |
window.Close();
|
|
65 | 82 |
} |
66 | 83 |
} |
67 | 84 |
|
내보내기 Unified diff