프로젝트

일반

사용자정보

개정판 469b2bbf

ID469b2bbf0601c90e268e23f08ea1f387e87c4842
상위 6deaed53
하위 e54660e8

KangIngu 이(가) 6년 이상 전에 추가함

- 회전 되어있는 Textbox MultiSelect시 선택 안되는 문제 수정
- SearchPanel 단축 키 변경 (F > Control+F)
SearchPanel 단축 키 재 선택 시 Search Panel 숨겨지던 부분 수정(IsHidden -> IsActive)

차이점 보기:

KCOM/Events/Event_KeyEvent.cs
616 616
                #region FIND(Ctrl + F)
617 617
                case Key.F:
618 618
                    {
619
                        if (!this.dzMainMenu.searchPane.IsPinned)
619
                        if (ViewerDataModel.Instance.IsPressCtrl)
620 620
                        {
621
                            this.dzMainMenu.searchPane.IsPinned = true;
622
                            if (ViewerDataModel.Instance.searchPDF!=null)
621
                            if (!this.dzMainMenu.searchPane.IsPinned)
623 622
                            {
624
                                this.dzMainMenu.searchPanel_Instance.tbSearch.Focus();
623
                                this.dzMainMenu.searchPane.IsPinned = true;
624
                                if (ViewerDataModel.Instance.searchPDF != null)
625
                                {
626
                                    this.dzMainMenu.searchPanel_Instance.tbSearch.Focus();
627
                                }
628
                                else
629
                                {
630
                                    this.dzMainMenu.searchPanel_Instance.btnSearch.Focus();
631
                                }
625 632
                            }
626 633
                            else
627 634
                            {
628
                                this.dzMainMenu.searchPanel_Instance.btnSearch.Focus();
635
                                this.dzMainMenu.searchPane.IsPinned = false;
636
                                this.dzMainMenu.searchPane.IsActive = false;
637
                                //this.dzMainMenu.searchPane.IsHidden = true;
629 638
                            }
630 639
                        }
631
                        else
632
                        {
633
                            this.dzMainMenu.searchPane.IsPinned = false;
634
                            this.dzMainMenu.searchPane.IsHidden = true;
635
                        }
636 640
                    }
637 641
                    break;
638 642
                #endregion

내보내기 Unified diff

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