0
イメージをコンバータからソースにバインドできませんか?WPF Xaml Image from Converter
<!-- Works fine -->
<Image Grid.Row="0" Grid.Column="4" Grid.RowSpan="6" Margin="5">
<Image.Source>
C:\pictures\Becker.png
</Image.Source>
</Image>
<!-- Works not -->
<Image Source="{Binding ClientPicture, Converter={StaticResource clientpictureconv}, ConverterParameter={Binding ClientNumber}}"/>
コンバータでは、ハードコードされた画像Uri(上から)を戻します。 ImageをTextblockに置き換えると、完全なURIが表示されます。しかし、画像の画像ではありません。
私は何ができますか?
偉大な男!どうも。 –
また、converterparameterをバインドすることができないことを覚えている限り、バインディングに関して何かできることがあるかもしれませんが、コンバーターでマルチバインディングを使用する方が簡単です。 –