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?