これは可能だと思いますが、それを行う方法がわかりません。クラス レベル変数の値を、データ テンプレート内からコンバーターに渡す必要があります。
<DataTemplate x:Key="ResponseItemTemplate">
<StackPanel Orientation="Horizontal" >
<StackPanel.Visibility>
<MultiBinding Converter="{StaticResource VisibilityConverter}">
<Binding Path="Key"/>
<Binding Path="CurrentLanguage"/>
</MultiBinding>
</StackPanel.Visibility>
<TextBox Width="200" Text="{Binding Value}" />
</StackPanel>
</DataTemplate>
「キー」値はデータ テンプレートの応答アイテムに存在するため、これは正しく渡されますが、CurrentLanguage はクラス変数であり、コンバーターに正しく渡すことができません。何か案は?