프로젝트

일반

사용자정보

개정판 6af42ff0

ID6af42ff03346c4a82b314e2c20a97857d3ea8093
상위 0f26a9aa
하위 5a00ee8e

김태성이(가) 약 5년 전에 추가함

issue #0002 Search Panel 수정

Change-Id: I6b65a08862f9ec421dd81464d4e48cc14c20e0dd

차이점 보기:

KCOM/Common/ViewerDataModel.cs
11 11
using System.IO;
12 12
using System.Linq;
13 13
using System.Text;
14
using System.Threading.Tasks;
14 15
using System.Windows;
15 16
using System.Windows.Controls;
16 17
using System.Windows.Ink;
......
100 101
            }
101 102
        }
102 103

  
104
        private bool isDownloadOriginal;
105
        public bool IsDownloadOriginal
106
        {
107
            get => isDownloadOriginal;
108
            set
109
            {
110
                if (isDownloadOriginal != value)
111
                {
112
                    isDownloadOriginal = value;
113
                    OnPropertyChanged("IsDownloadOriginal");
114
                }
115
            }
116
        }
117

  
118
        private bool isDownloadCancel;
119
        public bool IsDownloadCancel
120
        {
121
            get => isDownloadCancel;
122
            set
123
            {
124
                if (isDownloadCancel != value)
125
                {
126
                    isDownloadCancel = value;
127
                    OnPropertyChanged("IsDownloadCancel");
128
                }
129
            }
130
        }
131

  
132
        private int downloadFileProgress;
133
        public int DownloadFileProgress
134
        {
135
            get => downloadFileProgress;
136
            set
137
            {
138
                if (downloadFileProgress != value)
139
                {
140
                    downloadFileProgress = value;
141
                    OnPropertyChanged("DownloadFileProgress");
142
                }
143
            }
144
        }
145

  
146
        private string originalTempFile;
147
        public string OriginalTempFile
148
        {
149
            get => originalTempFile;
150
            set
151
            {
152
                if (originalTempFile != value)
153
                {
154
                    originalTempFile = value;
155
                    OnPropertyChanged("OriginalTempFile");
156
                }
157
            }
158
        }
159

  
103 160
        private List<IKCOM.MarkupItemEx> _MarkupList_MY { get; set; }
104 161
        public List<IKCOM.MarkupItemEx> MarkupList_MY
105 162
        {
......
1141 1198
            this.SaveInterval = KCOM.Properties.Settings.Default.SaveInterval;
1142 1199

  
1143 1200
        }
1144
        
1145
        public List<IKCOM.MarkupInfoItem> SelectedmarkupInfoItems { get; set; }
1146 1201

  
1202

  
1203
        public List<IKCOM.MarkupInfoItem> SelectedmarkupInfoItems { get; set; }
1204
       
1147 1205
        #region INotifyPropertyChanged Event
1148 1206

  
1149 1207
        private void OnPropertyChanged(string name)

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)