Articles in this section
Category / Section

How to make the GroupView control look like the Microsoft Windows/Office 2000 folder selector list

1 min read

 

Setting the following non-default properties will endow the GroupView control with the appearance and behavioral traits of the Windows/Office 2000 folder selection list:

C#

this.groupView1.SmallImageView = false;

this.groupView1.ButtonView = true;

this.groupView1.BackColor = SystemColors.ControlDark;

this.groupView1.ForeColor = SystemColors.HighlightText;

this.groupView1.ImageSpacing = 5;

this.groupView1.ItemXSpacing = 8;

this.groupView1.ItemYSpacing = 1;

this.groupView.HighlightText = true;

this.groupView.HighlightImage = true;

this.groupView.TextWrap = true;

VB

Me.groupView1.SmallImageView = False

Me.groupView1.ButtonView = True

Me.groupView1.BackColor = SystemColors.ControlDark

Me.groupView1.ForeColor = SystemColors.HighlightText

Me.groupView1.ImageSpacing = 5

Me.groupView1.ItemXSpacing = 8

Me.groupView1.ItemYSpacing = 1

Me.groupView.HighlightText = True

Me.groupView.HighlightImage = True

Me.groupView.TextWrap = True

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied