2017-06-03 92 views
0

我有XAML文件說SomePage.xaml在Visual Studio解決方案中重新鏈接Xaml和代碼

我犯了一個錯誤,重構它的代碼從SomePageCardsPage類的類。

現在XAML文件不再與後面的代碼鏈接。

Separate File

再怎麼聯繫在一起這些文件?

+1

它們鏈接在.csproj文件中,在文本編輯器中打開並查找鏈接的對,然後複製未鏈接的兩個文件的示例(它只是xml) – Charleh

+0

謝謝,我會嘗試那。 –

回答

1

如果您打開包含您的CardsPage的項目文件,則可以將它們重新鏈接在一起。

你應該有2個部分在那裏,一個應該是這樣的:

<Page Include="CardsPage.xaml"> 
    <Generator>MSBuild:Compile</Generator> 
    <SubType>Designer</SubType> 
</Page> 

另一部分應該是這樣的:

<Compile Include="CardsPage.xaml.cs"> 
    <DependentUpon>CardsPage.xaml</DependentUpon> 
</Compile> 

的DependentUpon是很重要的,它會窩文件在xaml下面的IDE中。
注意:在您的屏幕截圖中,CardsPage看起來像重命名爲CardsPage.cs,我會確保將其重命名爲CardsPage.xaml.cs。

希望有幫助,我可悲的是不知道任何其他方式,而不是在項目文件中擺弄,以使其再次工作。

+0

謝謝,這是工作。 –

相關問題