gpt4 book ai didi

c++ - CRichEditCtrl 获得焦点时全选文本

转载 作者:太空狗 更新时间:2023-10-29 20:26:10 25 4
gpt4 key购买 nike

我有一个带有菜单和 CTabCtrl 的对话框。 CTabCtrl 有一个选项卡,其中包含一个 CDialog。反过来,它包含一些静态文本和一个 CRichEditCtrl。窗口获得和失去焦点没有特别的问题。

我添加了第二个相同的选项卡,现在每次更改选项卡时,CRichEditCtrl 中的所有文本显然都被选中。它以倒置的配色方案显示,如果您按下某个键,所有文本都会被替换。

标志 ECO_NOHIDESEL 的描述说(强调我的):

Negates the default behavior for an edit control. The default behavior hides the selection when the control loses the input focus and shows the selection when the control receives the input focus. If you specify ECO_NOHIDESEL, the selected text is inverted, even if the control does not have the focus.

“显示选择”对我来说听起来像是“显示此控件最后一次获得焦点时的选择”,这不是正在发生的事情。通常在失去焦点之前不会选择任何内容,但如果我确实尝试离开选择,返回到另一个选项卡并返回,整个文本会像往常一样被选中。

可以阻止这种选择吗?

void EditorDialog::OnTabSelChange( NMHDR * phdr, LRESULT* pResult ) {

  CTabCtrl* ptab = (CTabCtrl*) GetDlgItem( IDC_TAB );

int iPageActive = ptab->GetCurSel();

if ( iPageActive >= appage.N() ) {
AKS( AKSWarn, "got tab change to tab %d when I only have %d ppages", iPageActive, appage.N() );
return;
}

ppageActive = appage[ iPageActive ];

SetActivePagePos();

SCWinUtilSetWindowTextVA( this, "Editor: %s", ppageActive->pszFileName );
}



void EditorDialog::SetActivePagePos() {

// STEP 1: Make the proper tab page visible.

for ( int i = 0; i < appage.N(); i++ )
appage[i]->ShowWindow( SW_HIDE );
ppageActive->ShowWindow( SW_SHOW );

// STEP 2: Make the new tab page the right size and position.

CTabCtrl* ptab = (CTabCtrl*) GetDlgItem( IDC_TAB );

CRect rectTab, rectItem;

ptab->GetClientRect( &rectTab );
ptab->GetItemRect( 0, &rectItem );

int iPageX = rectItem.left + 2;
int iPageY = rectItem.bottom + 4;
int iPageW = rectTab.right - 2 - iPageX;
int iPageH = rectTab.bottom - 2 - iPageY;

ppageActive->SetWindowPos( &wndTop, iPageX, iPageY, iPageW, iPageH, SWP_SHOWWINDOW | SWP_NOZORDER );

// STEP 3: Give the window focus and let it know to redraw.

ppageActive->SetFocus();

// When the tab changes the entire content of the RichEdit is selected for some reason.
// As a workaround I manually clear the selection.
CRichEditCtrl* prich = (CRichEditCtrl*) ppageActive->GetDlgItem( IDC_PATCH );
prich->SetSel(-1,-1);

// Redrawing just the prich, or the ppageActive, or the ptab, doesn't
// cause the RichEdit to redraw correctly, but Redrawing the entire dialog does.
RedrawWindow();
}

最佳答案

Edit 和 Rich Edit 控件的默认行为是当控件没有输入焦点时使选择不可见,只有当控件有焦点时才使其可见。但是,选择没有改变ES_NOHIDESEL 样式覆盖此默认行为并使选择始终出现在控件中,无论它是否具有焦点。您以前肯定见过这种行为:Microsoft Word 和 Visual Studio 都会这样做。

因此,您对 SDK 文档的理解是完全正确的。不幸的是,Rich Edit 控件行为的另一个方面阻碍了它。每当对话框中托管的 Edit 或 Rich Edit 控件 获得焦点时,它会自动选择其所有文本,并在该过程中抹掉当前的插入符号位置。 ES_NOHIDESEL 对此行为没有任何影响;当控件未聚焦时,它只是改变选择是否可见。您当然可以通过执行 IInspectable suggested 来覆盖此全选行为。和 subclassing the control to customize its handling of the WM_GETDLGCODE message .

但是有一个简单得多的解决方案。与 ES_NOHIDESEL 相同,您要设置 ES_SAVESEL style 用于创建时的控制。虽然您可以在资源编辑器中设置 ES_NOHIDESEL(“不隐藏选择”),但没有与 ES_SAVESEL 等效的属性。您可以手动将它添加到 RC 文件,但不能保证它不会在 Visual Studio 重新生成该文件时被删除。

或者,您可以向 Rich Edit 控件发送 EM_SETOPTIONS 消息,指定 ECO_SAVESEL 选项。在 MFC 中,SetOptions成员函数包装此消息的发送。例如,在您的 OnInitDialog 函数中,您可能具有以下内容:

m_myRichEditCtrl.SetOptions(ECOOP_OR, ECO_SAVESEL);  // maintain selection across focus events

关于c++ - CRichEditCtrl 获得焦点时全选文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20876045/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com