DT_EDITCONTROL的官方解释是:Duplicates the text-displaying characteristics of a multiline edit control. Specifically, the average character width is calculated in the same manner as for an edit control, and the fun
// 使用上面的两种风格,路径过长时路径中部分文字会以省略号代替 UINT uTextStyle = m_pNoteText->GetTextStyle();uTextStyle |= DT_WORDBREAK|DT_PATH_ELLIPSIS|DT_WORD_ELLIPSIS|DT_END_ELLIPSIS|DT_EDITCONTROL;m_pNoteText->SetTextStyle( uTextStyle );2、信息分行显示,单行的信息显示不...