MVM部分を電話と共有するMVVMでWindows 8プログラムを作っています。
私の問題は、WinRT で Windows Phone プロジェクトの XAML サンプル データを使用しようとすると、大量のエラーが発生することです。私のXAMLは次のとおりです。
<vm:MyViewModel
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="clr-namespace:MyApp.ViewModels"
>
clr-namespace ディレクティブを使用しているため、これは明らかに問題があります。しかし、私がそれを
<vm:MyViewModel
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:MyApp.ViewModels"
>
次のような同じ一連のエラーが発生します
The name "MyViewModel" does not exist in the namespace "using:MyApp.ViewModels"
Windows Phone のように、WinRT で XAML ファイルをサンプルとして使用できますか? このエラーを解決するにはどうすればよいですか?
ありがとう :)