Azurewrath

Hi,

When I create a node and make it's font bold, it doesn't show all of the text, as it does when it is non-bold Is there a property or setting to correct that

Thanks,

aw



(Moderator: Please post winform questions to the Windows Forms General forum and mention you use C#. I have moved this post to that location.)



Re: Windows Forms General TreeView node font question

Gavin Jin - MSFT

Hi,

You can set the NodeFont property of your Root Node Font.

Regards.






Re: Windows Forms General TreeView node font question

nobugz

Check this Product Feedback article for a workaround.





Re: Windows Forms General TreeView node font question

Azurewrath

Thanks guys! Very useful.

aw





Re: Windows Forms General TreeView node font question

Robertico

I have found a workaround.

After you set the node to bold

make :

Code Snippet

node1.Text = node1.Text;



then it fits.

Robertico




Re: Windows Forms General TreeView node font question

Robertico

I have found a way

After to make Bold the TreeNode make

node1.Text = node1.Text;

That fits.

Robert




Re: Windows Forms General TreeView node font question

Robertico

to post here ist horrible,

the last time:

I have found a way:

After to make Bold the Node make:

node1.Text = node1.Text;

Then its correct

Robert




Re: Windows Forms General TreeView node font question

Azurewrath

Thanks man. I will try your method!

Thanks again,

aw