Hey is there anyway that in your program you can add a minimize/ maximize icon on the side anywhere. (like Below). I want to be able to minimize and maximize certain sections if it is at all possible. Thanks for the help.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m fairly certain that you can already (asin, by default) collapse any code with braces, but don’t have VS on hand to confirm this.
For collapsing absolutely anything, you could use
#region [name]and#endregion.Actually, looking straight at the documentation for hiding code you can select code, right click it, go to ‘Outlining’ and choose ‘Hide Selection’. This would have the same effect as creating and collapsing a region, apart from regions are named (thus explaining what is contained within, which is probably easier for you to keep track of if it’s for large groups of code).