개정판 4c8bb207
Print, Save 단축키로 실행 시 Ctrl Key Up Event 실행이 안되므로 다음번 Text 입력 시 s 를 누르면 Save 를 시도.
KCOM/Events/Implementation/TopMenuEvent.cs | ||
---|---|---|
406 | 406 |
|
407 | 407 |
if (sender != null) |
408 | 408 |
{ |
409 |
if (ViewerDataModel.Instance.IsPressCtrl) |
|
410 |
{ |
|
411 |
ViewerDataModel.Instance.IsPressCtrl = false; |
|
412 |
} |
|
409 | 413 |
this.ParentOfType<MainWindow>().DialogMessage_Alert("Save 가 완료되었습니다.", "Alert"); |
410 | 414 |
} |
411 | 415 |
return; |
... | ... | |
416 | 420 |
} |
417 | 421 |
if (sender != null) |
418 | 422 |
{ |
423 |
if (ViewerDataModel.Instance.IsPressCtrl) |
|
424 |
{ |
|
425 |
ViewerDataModel.Instance.IsPressCtrl = false; |
|
426 |
} |
|
419 | 427 |
this.ParentOfType<MainWindow>().DialogMessage_Alert("Save 가 완료되었습니다.", "Alert"); |
420 | 428 |
} |
421 | 429 |
} |
... | ... | |
495 | 503 |
//강인구 추가 |
496 | 504 |
public void Print_Start(string Type) |
497 | 505 |
{ |
498 |
|
|
499 |
if(ViewerDataModel.Instance.MarkupControls_USER.Count > 0 || this.ParentOfType<MainWindow>().dzMainMenu.SelectLayer.Children.Count > 0) |
|
506 |
if (ViewerDataModel.Instance.IsPressCtrl) |
|
507 |
{ |
|
508 |
ViewerDataModel.Instance.IsPressCtrl = false; |
|
509 |
} |
|
510 |
if (ViewerDataModel.Instance.MarkupControls_USER.Count > 0 || this.ParentOfType<MainWindow>().dzMainMenu.SelectLayer.Children.Count > 0) |
|
500 | 511 |
{ |
501 | 512 |
var menu = this.ParentOfType<MainWindow>().dzMainMenu; |
502 | 513 |
menu.ReleaseAdorner(); |
내보내기 Unified diff