なぜこれが機能しないのですか?
画像コントロール(名前:myImage)を持つ一部のUsercontrol(名前:myUserControl):
UserControl.cs>
...
public ImageSource MyImageSource{get;set;}
...
UserControl.xaml.cs>
...
<Image Name="myImage" Stretch="Fill" Source="{Binding ElementName=myUserControl, Path=MyImageSource}" />
...
このカスタムユーザーコントロールを使用して、「MyImageSource」の値を設定すると(画像を参照できます)。しかし、ビルドして実行すると、何も表示されません。バインディングは正しく行いましたか?