私のプロジェクトで MVVM 設計を使用する方法を読んでいて、サンプル MVVM コンセプト プロジェクトを調べていたときに、次のことがわかりました。
<Window x:Class="MVVMDemo.UserRegistrationView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:viewmodel="clr-namespace:MVVMDemo"
Title="Window1" Height="300" Width="300">
<Window.Resources>
<viewmodel:ViewModel x:Key="ViewModel"/>
</Window.Resources>
<Grid DataContext="{Binding Source={StaticResource ViewModel}}">
これを追加して新しいプロジェクトを作成します。
xmlns:viewmodel="clr-namespace:MVVMDemo"
Title="Window1" Height="300" Width="300">
<Window.Resources>
<viewmodel:ViewModel x:Key="ViewModel"/>
</Window.Resources>
および "DataContext="{Binding Source={StaticResource ViewModel}}"" を Grid 句に追加します。
しかし、奇妙なエラーが発生します。何が問題ですか?どうすれば修正できますか?