0

我升级到 Visual Studio 2012,我似乎无法让格式化程序解开我的指令标签。我有这个指令标签

<%@ Page Title=""
    Language="C#"
    MasterPageFile="~/MasterPages/Master1.Master"
    EnableEventValidation="false" 
    AutoEventWireup="true" 
    CodeBehind="WebForm1.aspx.cs" 
    Inherits="Test" %>

当我格式化它时,什么也没有发生(键盘快捷键 control+k,control+f)。在 Visual Studio 2010 中,它将解开标记,使其看起来像这样。

<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPages/Master1.Master" EnableEventValidation="false" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Test" %>

我比较了两个版本的 Visual Studio 之间的设置,我看不出有什么不同会影响指令标签的展开方式。我需要更改哪些设置才能打开指令标签?

4

2 回答 2

0

根据 Visual Studio 团队的回复,这是一个已知错误,不会修复。

于 2013-03-26T17:25:46.683 回答
0

According to my VS2012, the Key combination is the same (Ctrl E, F).

You can look which Combination your VS is using by going in the Edit Menu, then Advanced >.

于 2012-12-03T19:53:03.700 回答