void CInfoStationDlg::OnLButtonDown(UINT nFlags, CPoint point)
{
CRect rect;
GetDlgItem( IDC_STATIC_FIXSDAY)->GetClientRect( &rect );
if (rect.PtInRect(point ))
{
SendMessage(WM_SYSCOMMAND,0xF012,0);//0xF012 = SC_MOVE | HTCAPTION
}
CDialog::OnLButtonDown(nFlags, point);
}

相关文章:

  • 2022-02-27
  • 2022-12-23
  • 2021-12-26
  • 2022-01-01
  • 2021-12-04
  • 2021-11-28
  • 2022-12-23
  • 2022-02-09
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-09
相关资源
相似解决方案