개정판 114015fd
issue #740 Print 설정 화면에서 Page Option이 Current일 경우 Commented Pages(Click To Select Page)의 페이지 표기가 변경되지 않는 버그 수정
KCOM/Controls/PrintControl.xaml.cs | ||
---|---|---|
278 | 278 |
{ |
279 | 279 |
this.CurrentPageNo = (int)this.sliderPages.Value; |
280 | 280 |
PageChanged(this.CurrentPageNo); |
281 |
|
|
282 |
if(_ButtonName == "Current") |
|
283 |
{ |
|
284 |
stPageNo.Value = CurrentPageNo; |
|
285 |
edPageNo.Value = CurrentPageNo; |
|
286 |
} |
|
287 |
|
|
281 | 288 |
//CheckCommentPages(); |
282 | 289 |
} |
283 | 290 |
} |
... | ... | |
305 | 312 |
CheckCommentPages(); |
306 | 313 |
} |
307 | 314 |
} |
308 |
|
|
315 |
string _ButtonName; |
|
309 | 316 |
private void PageSelect_Checked(object sender, RoutedEventArgs e) |
310 | 317 |
{ |
311 | 318 |
if (!_initializeComponentFinished) return; |
312 | 319 |
|
313 |
string _ButtonName = (sender as RadRadioButton).Tag.ToString();
|
|
320 |
_ButtonName = (sender as RadRadioButton).Tag.ToString(); |
|
314 | 321 |
CommentPageList.ItemsSource = null; |
315 | 322 |
|
316 | 323 |
switch (_ButtonName) |
내보내기 Unified diff