Display grid and color when list control is initialized

Source: Internet
Author: User

First, set the view attribute of list control to report, and add the variable name m_list for list control (this can be used by yourself ).

Then fill in the list control settings in the initialization function of the dialog box as follows:

Bool coiltype: oninitdialog ()
{

M_list.modifystyle (0, lvs_report | lvs_singlesel | lvs_showselalways );
M_list.setextendedstyle (lvs_ex_fullrowselect | lvs_ex_gridlines | lvs_ex_headerdragdrop );
M_list.settextcolor (RGB (, 0, 0); // display the font color
DWORD dwstyle = m_list.getstyle ();
Dwstyle | = lvs_ex_gridlines | lvs_ex_fullrowselect | lvs_showselalways;
M_list.setextendedstyle (dwstyle );
M_list.setbkcolor (RGB (240,247,233); // select the color of this column
M_list.settextbkcolor (RGB (240,247,233 ));

M_list.insertcolumn (0, "date", lvcfmt_center, 80, 0 );
M_list.insertcolumn (1, "oil number", lvcfmt_center );
M_list.insertcolumn (2, "oil unit price", lvcfmt_center );
M_list.insertcolumn (3, "Oil Depot No.", lvcfmt_center );
M_list.insertcolumn (4, "inventory", lvcfmt_center, 60, 4 );

......................

Return true

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.