Visual Studio
Welcome to the Visual Studio UserVoice site. Let us know what you would like to see in future versions of the Visual Studio suite of products. This site is for suggestions and ideas. If you need to file a bug, visit the Visual Studio Connect site: http://connect.microsoft.com/visualstudio.
ASP.NET Runtime/Web Tooling suggestions have moved! All your ideas, including your votes, have been transferred and are searchable in the ASP.Net Uservoice forum. Please submit any new ASP.NET Runtime/Web Tooling suggestions, or vote on existing suggestions by going to http://aspnet.uservoice.com.
We look forward to hearing from you!
Thanks – Deon Herbert
Visual Studio Team
-
823 votes
-
Support MVVM in VS.NET Metro templates
MVVM is widely recognized as the best pattern for xaml-based projects.
Please change the vs.net templates so that they generate a basic skeleton of an MVVM project (adding subfolders for Views, Viewmodels, Behaviors, Converters)
Add also basic classes like the DelegateCommand and other tools commonly used for MVVM implementation.This is a short description for:
http://social.msdn.microsoft.com/Forums/en-US/winappswithcsharp/thread/30254e92-5133-45de-b3c9-f52a72515821132 votes -
Go to Definition of resource in xaml
When you select a resource and press F12 you navigate to the declaration of the Resource according to the x:Key value
112 votes -
Surface [Obsolete] APIs in the XAML designer
When a type (or it's properties) are marked [obsolete] the designer should surface those as designer compile warnings as well.
70 votes -
XAML refactoring, especially for Rename of properties for Databinding
Currently renaming a property that is databound does NOT rename the binding in the XAML, or the string in the notify property change.
Ex: Currently, When you change MyInt to be something else
Backing ViewModel.cs:
int _myInt;
public int MyInt // Changes
{
get { return _myInt; }
set
{
if (_myInt != value)
{
_myInt = value;
if(PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs("MyInt")); /this String does not change
}
}
}
}SomeXaml.xaml:
<TextBlock Text={Binding MyInt}/> <!-- This MyInt also does not currently update --><!-- Other references in Xaml to MyInt also do not change -->
65 votes -
Provide intellisense for resources in the WPF xaml editor
It would be nice to have intellisense in the xaml editor for resources (styles, brushes, templates etc) that are stored in the resource dictionaries.
58 votes -
Add ability to debug xaml design mode issues
If you develop an app with blendability in mind (support of designer mode and designer data) it is sometimes very hard to find issues that occur in your code.
It will be very useful to be able to run debug against "design mode" with breakpoints and so on.32 votes -
Enable Xaml snippets in the Xaml editor
Enable code snippets for xaml , similar to html snippets for creating controls and panels
26 votes -
Automated add xml namespaces(xmlns)
Automated add xml namespaces(xmlns) for importing different types, in xaml like in ReSharper.
It will be great feature that allow to save many time for SL/WPF developers22 votes -
Add XAML Intellisense support for x:Static
Currently, when using x:Static in XAML, I always need to check the actual type and member names on the internet or other sources, because the IDE does not provide any auto complete support. For example, when referencing the SystemColors class, I need to look up the exact member names on MSDN, you can hardly know all of them.
11 votes -
Make designing WPF applications against objects smoother
While WPF provides robust support for binding, the presence of hand-coded member names within XAML is still a bit stifling.
What would make things easier would be:
1. A stupid easy means of declaring a design-time data context. Yes, I can import the Blend designer namespace to do this, but doing this requires adding yet another namespace to already incredibly verbose XAML files, marking that namespace as ignorable, importing the namespace of the design-time object (even if that namespace is never used in the XAML), and instantiating the object. In many cases, the designer-mocked class won't compile, so I'm forced…
9 votes -
Allow XAML nested comments
Support nested comments in XAML.
When trying things out I often comment out whole blocks of XAML.
This does not work if such a XAML block already contains commented lines.8 votesXAML should be a well formed XML document for our parsers to work. Nested comments are something that is not supported by the XML standard. An alternative approach would be to split the commenting such that the required block of XAML is commented but will be split into multiple commented blocks so that the resulting document is well formed.
-
Show tooltips in XAML and HTML intellisense
In VB and C# tooltips (form XML comments) are shown for classes, properties and enum values. It's very helpful. Shown them alson in XAML and ASP.NET editors for elements, attributes and enumerated attribute values (also for extensions in XAML).
8 votes -
Style Preview Pane - Beneficial for WP7, MetroApps, WPF, SL
With WP7 and MetroApps, all pushing towards XAML. I noticed these frameworks have standard styles for titles, headings, and other controls, but what I found cumbersome during coding, especially if you're just a text-editor user, is the ability to see what a particular text block style looks like and which ones are available to be chosen.
In office applications, there was conventionally a preview pane that's docked to the left or right oft the screen which lets you manage styles, this I believe is true in Expression Web as well.
It would be great if the tooling team on Visual…
7 votes -
Remove the "common" directory from metro templates
The readme in the "common" folder states clearly that one should not touch the classes in there and they are used by most if not all metro templates . . . That's a huge stepback from previous templates! If there are classes that are required by pretty much every metro templates, why aren't they in WINRT instead of laying around at random in our own code?
6 votesWe are looking into simplifying our templates for the next release of Visual Studio.
-
VisualStateManager Storyboard TargetName should be checked
I think one of the most common failures of Windows Store apps certification is crash related to snap view. It is often caused by removing or renaming of XAML elements, which still preservs in the VisualStateManager.
For example this causes a runtime crash when backButton element does not exists:
<VisualStateManager.VisualStateGroups><!-- Visual states reflect the application's view state -->
<VisualStateGroup x:Name="ApplicationViewStates">
<VisualState x:Name="FullScreenLandscape"/>
<VisualState x:Name="Filled"/><!-- The entire page respects the narrower 100-pixel margin convention for portrait -->
<VisualState x:Name="FullScreenPortrait">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
<DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PortraitBackButtonStyle}"/>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</VisualState><!-- The back button and title have different styles…
6 votes -
Make Blend use the same keyboard shortcuts as Visual Studio
Right now, Blend has it's own set of keyboard shortcuts, and for the most part, they don't match Visual Studios. I would LOVE to see Blend have a keyboard selector like Visual Studio, where it let's me choose which one I want. That way designers used to their other programs can continue to use Blend without change, but so can us VS geeks....uh devs. :>
PS I was told to enter this here from @VisualStudio from Twitter.
5 votes -
don't change the cursor location in the xaml designer when tabbing back
When writing XAML in the XAML view that contains a bug, and ctrl+tabbing to another window, changing back should retain the cursor at the previous location.
4 votesThanks a bunch for pointing this out. Its on our radar now.
-
color
In dark color theme of visual studio 11 beta,
background color of the designer is left white.
Please turn it dark.3 votes -
Let Data Resources Window do it's Work in another thread
I'm in a silverlight xaml page,
and when i open or refresh (Data Sources window)
Visual Studio just freez for some valuable time,
I suggest to let Data Sources window do it's work
in another thread.3 votes
- Don't see your idea?