Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2010 row lines

How can I remove row-lines from visual studio? At the moment it looks like this:

---------try
-----------{
----------------liste_msg.Text = "File Uploded!";
----------------con.Close();
------------}
--------catch (Exception)
-----------{
----------------liste_msg.Text = "File cant uploaded.";
-----------}
like image 385
mekar10 Avatar asked Aug 10 '11 13:08

mekar10


1 Answers

Press CTRL + R followed by CTRL + W to toggle it.

It's also under the menu bars in Edit > Advanced > View White Space.

like image 166
Yuck Avatar answered Oct 20 '22 18:10

Yuck