在VS中建立.aspx,.cs,.designer.cs之間的級聯關係

王明輝發表於2015-02-13
    <Compile Include="..\Admin\Actions.aspx.cs">
      <DependentUpon>Actions.aspx</DependentUpon>
        <SubType>ASPXCodeBehind</SubType>
    </Compile>
    <Compile Include="..\Admin\Actions.aspx.designer.cs">
      <DependentUpon>Actions.aspx</DependentUpon>
        <SubType>ASPXCodeBehind</SubType>
    </Compile>

csproj專案檔案中,形成這樣的程式碼,重要的是<DependentUpon>這一節,如果沒有它,在VS中就不會形成級聯關係,而是並列。

如果沒有designer.cs檔案,最直接的效果就是在cs中右鍵時沒有“檢視設計器”。

相關文章