私は面白い問題を抱えてBinding
おり、DataTemplate
を含む がありButton
、DataTemplate
ウィンドウ (specView) に配置されていました。 をウィンドウのビューモデル内にバインドする必要があるButton.Command
ためCommnad
、次のようにします。
Command="{Binding DataContext.NewOfferNoCommand,ElementName=specView}"/>
しかし、値を返す Converter を作成するまでバインドされません。
public class ReturnValueConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return value;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return value;
}
}
問題が何であるかを本当に理解できませんか?