开发者

How to make focus remain on all list control on same dialog box?

I have 3 list contr开发者_如何学运维ol on one dialog box but only one is showing focus. if i clicked on 2nd list control then focus disaappear from 1st one. Means at a time only one list showing focus. How to make focus remain on all list control on same dialog box?


I don't think that this is technically possible. 'Focus' is an attribute that can only be applied to an individual element.

Think of it in terms of 'focus' is the element that the user is currently interacting with. How would a user be expected to interact with 3 distinct elements at the same time?


As Brian says - focus can only be on one control at time. I'm guessing you are trying to change the other list controls based on the first list box. One way to do it is to associate a variable with each list control, like mListCtrl1, mListCtrl2. Then add a handler for the NM_CLICK event, and have some code like this:

void CTabTestDlg::OnNMClickList3(NMHDR *pNMHDR, LRESULT *pResult)
{
   LPNMITEMACTIVATE pNMItemActivate = (LPNMITEMACTIVATE)(pNMHDR);
   // TODO: Add your control notification handler code here
   *pResult = 0;
   UpdateData(true);
   DWORD dwData = mListCtrl1.GetItemData(pNMItemActivate->iItem);
   int max = mListCtrl2.GetItemCount();
   for (int i=0;i<max;i++)
   {
      DWORD dwData2 = mListCtrl2.GetItemData(i);
      if (dwData==dwData2)
      {
         mListCtrl2.SetItemState(i,LVIS_SELECTED,LVIS_SELECTED);
         break;
      }
   }
   UpdateData(false);
}

Note that I have the control set to "Always show selection", and "Single selection"

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜