Reputation: 12490
I love dark themes in my development environments but can't find a way to make the resources editor (particularly strings) of Visual Studio dark too. My VS version is 2015 Professional.
Here's how I see it:
while the rest of the UI looks like this:
Upvotes: 6
Views: 1027
Reputation: 371
You can use the XLM editor instead of the table view, using Open With/XML (Text) Editor With Encoding and on top of adapting to your theme, it offers extended editing features such as reordering your data or multi-caret editing, find and replace etc.
Plus, you can use background images by using various extensions.
Upvotes: 0
Reputation: 196
There is an extension for the Visual Studio 2015 Enterprise that changes the theme color of every element of the IDE. Just search themes and you get a lot of extensions and 90% of them work, you can even set up some transparent background for your coding environment and even add some music(mostly trance) that changes and helps you concentrate while coding.
Upvotes: 3
Reputation: 1528
If you inspect the resx editor using inspect.exe tool, you can see its a Winforms data grid view. It does not honor WPF styles. According to my understanding VS is built using WPF changes the themes via WPF style feature.
https://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview(v=vs.110).aspx
Upvotes: 1