Drawing Horizontal and Vertical Gridlines for ClistCtrl

zhaozj2021-02-16  71

Rating:

None

Zafir Anjum (View Profile) August 6, 1998

To draw horizontal and vertical gridlines we essentially use the same method used for the vertical gridline or column border used in the previous section. After drawing the vertical lines, we use GetItemRect () to get the item height and then we draw the horizontal grid lines based on this height. One implication of using GetItemRect () is that it fails when the list does not have any items in it and no horizontal line is drawn. Here is the complete code of the overridden OnPaint () function. Also note that the NEXT VERSION OF THE LIST View Control Will Support The LVS_EX_GRIDLINES STYLE AND SHOULD MAKE OUR CODE Redundant.

(Continued)

void CMyListCtrl :: OnPaint () {// First let the control do its default drawing const MSG * msg = GetCurrentMessage ();. DefWindowProc (msg-> message, msg-> wParam, msg-> lParam); // Draw the lines only for LVS_REPORT mode if ((GetStyle () & LVS_TYPEMASK) == LVS_REPORT) {// Get the number of columns CClientDC dc (this); CHeaderCtrl * pHeader = (CHeaderCtrl *) GetDlgItem (0); int nColumnCount = pHeader- > GetItemcount (); // the bottom of the header correlectr iponds; pheader-> getclientRect; int top = Rect.bottom; // Now get the client Rect So We know the line length And //hen to stop geclientRect (& Rect); // the border of the column is offset by the horz scroll int borderx = 0 - getScrollPos (SB_HORZ); for (int i = 0; i

The vertical grid line is actually drawn one pixel left of the column border. This aligns it better with the column header. It also introduces a bug. When you increase a column width, the column area below the last visible item is not updated, thus leaving traces of the previous line. There are two approaches you can take to resolve this. First, draw the line exactly on the column border (ei do not subtract 1 from borderx). The second approach is to handle the HDN_TRACK notification from the header control and invalidate the exposed area so that it gets redrawn.BTW, Paul Gerhart has also implemented this using an owner-drawn CListCtrl He has made the source code available with a sample app You can find it at http:.. // www. VoiceNet.com/~pgerhart/_shware.html

转载请注明原文地址:https://www.9cbs.com/read-18012.html

New Post(0)