Showing tag results for Visual Studio

Sep 18, 2013
Post comments count0
Post likes count0

Designing pixel perfect layouts in Visual Studio 2013 and Blend

Visual Studio Team
Visual Studio Team

It’s a familiar scenario. You’re developing your application and you’ve got a design in mind. It may have come from a professional designer or a sketch on the back of a cocktail napkin, but you need to move from a concept to a working, implemented design. This can be easier said than done. When your design calls for the baseline of that text to ...

Visual StudioHTMLXAML
Sep 16, 2013
Post comments count0
Post likes count0

Notifications in Visual Studio 2013

Visual Studio Team
Visual Studio Team

One of the benefits to having a connected IDE is that your environment can be kept up to date easily by presenting you with notifications of updates and relevant account information. Visual Studio will not only keep your environment up to date but also keep you in control of your preferred configurations. There are two main avenues for presentin...

.NETVisual StudioC#
Sep 12, 2013
Post comments count0
Post likes count0

Supercharged Styling: Quickly Finding and Setting a CSS Property in Blend

Visual Studio Team
Visual Studio Team

A core goal of Blend for Visual Studio is to make it fast and easy for developers who care about the quality of their markup to create professional looking apps. One of the many ways that the HTML Designer in Blend can speed up the CSS editing experience when developing Windows Store apps is by providing immediate visual feedback and enabling direc...

Visual StudioDebugging and DiagnosticsJava
Sep 9, 2013
Post comments count0
Post likes count0

Visual Studio 2013 RC available now!

Visual Studio Team
Visual Studio Team

Today, we announced that the Visual Studio 2013 Release Candidate is now available for download on our Visual Studio product site. We are also excited to share that the Visual Studio 2013 Launch is on Nov 13th 2013. Save the date to participate in all the excitement, more details about the event can be found on the events page. Visual Studio ...

Visual StudioVisual Studio 2013
Aug 15, 2013
Post comments count0
Post likes count0

What’s new in Visual Studio 2013 and InstallShield Limited Edition

Visual Studio Team
Visual Studio Team

UPDATE: We’re happy to announce the availability of the Visual Studio Installer Projects Extension. This extension provides support for Visual Studio Installer projects in Visual Studio 2013. You can download the extension from the Visual Studio Gallery. To learn more check out this blog post on Visual Studio Installer Projects extension.  ...

Visual StudioVisual Studio 2013
Aug 9, 2013
Post comments count0
Post likes count0

XAML Editor Improvements in Visual Studio 2013

Visual Studio Team
Visual Studio Team

While many of you like creating XAML using our visual tools, many prefer creating XAML in the code editor as well. Your feedback was heard loud and clear and we have taken a crack at the top XAML editor feature requests in Visual Studio 2013. This blog post describes the new editor features in detail and how you can use them! IntelliSense for Data...

Visual StudioXAMLVisual Studio 2013
Aug 8, 2013
Post comments count0
Post likes count0

Update for Extension Authors: VSIX Manifest Version Range Attribute

Visual Studio Team
Visual Studio Team

In Visual Studio 2010 we introduced a new deployment model for extensions, the VSIX format. This format is based on the Open Packaging Conventions and enables extension developers to create a single package that can be easily installed by Visual Studio and contain all the appropriate files to describe the extension. For Visual Studio 2012 we wante...

Visual StudioExtensionsVisual Studio 2013
Nov 19, 2009
Post comments count0
Post likes count0

Debugging Expression Trees in Visual Studio 2010

Visual Studio Team
Visual Studio Team

First of all, let’s take a look at the example from one of my previous posts. It creates an expression tree for calculating the factorial of a number. Now, what if you want to see the content of this tree in debug mode? You can try lambda.ToString() but it’s not very informative. All you get is this: value => {var result; … }. Basically, it te...

Visual StudioDebugging and DiagnosticsC#