我想更改 TreeView 控件的字体大小。在 goolge 上搜索后,我才知道应该为这个 TreeView 使用 CustomDraw。但是NMTVCUSTOMDRAW
结构只有设置TreeView中显示文本的前景色和背景色clrText
。clrText
我的问题是:
Q1: How to change the font size in a TreeView? For the background color of TreeView,
one can just use `TreeView_SetBkColor` or send a message. Anything similar
for font size?
Q2: What's the difference between Custom Draw and Owner Draw?