개정판 9cd2865b
Compare 화면에서 Sync 토글 추가
KCOM/Common/ViewerDataModel.cs | ||
---|---|---|
55 | 55 |
|
56 | 56 |
private double contentOffsetX = 0; |
57 | 57 |
|
58 |
private double Sync_contentScale = 1; |
|
59 |
|
|
60 |
private double Sync_contentOffsetY = 0; |
|
61 |
|
|
62 |
private double Sync_contentOffsetX = 0; |
|
63 |
|
|
58 | 64 |
private double contentViewportHeight = 0; |
59 | 65 |
|
60 | 66 |
private double contentViewportWidth = 0; |
... | ... | |
693 | 699 |
} |
694 | 700 |
} |
695 | 701 |
|
702 |
public double Sync_ContentScale |
|
703 |
{ |
|
704 |
get |
|
705 |
{ |
|
706 |
return Sync_contentScale; |
|
707 |
} |
|
708 |
set |
|
709 |
{ |
|
710 |
Sync_contentScale = value; |
|
711 |
OnPropertyChanged("Sync_ContentScale"); |
|
712 |
} |
|
713 |
} |
|
714 |
|
|
696 | 715 |
public ObservableCollection<IKCOM.MarkupInfoItem> _markupInfoList |
697 | 716 |
{ |
698 | 717 |
get |
... | ... | |
749 | 768 |
} |
750 | 769 |
} |
751 | 770 |
|
771 |
public double Sync_ContentOffsetX |
|
772 |
{ |
|
773 |
get |
|
774 |
{ |
|
775 |
return Sync_contentOffsetX; |
|
776 |
} |
|
777 |
set |
|
778 |
{ |
|
779 |
Sync_contentOffsetX = value; |
|
780 |
OnPropertyChanged("Sync_ContentOffsetX"); |
|
781 |
} |
|
782 |
} |
|
783 |
|
|
784 |
public double Sync_ContentOffsetY |
|
785 |
{ |
|
786 |
get |
|
787 |
{ |
|
788 |
return Sync_contentOffsetY; |
|
789 |
} |
|
790 |
set |
|
791 |
{ |
|
792 |
Sync_contentOffsetY = value; |
|
793 |
OnPropertyChanged("Sync_ContentOffsetY"); |
|
794 |
} |
|
795 |
} |
|
796 |
|
|
752 | 797 |
public MessageCollection k_talkMessageSet |
753 | 798 |
{ |
754 | 799 |
get |
내보내기 Unified diff