私は、DataRowViewにバインドされたSelectedItemプロパティとDataViewにItemSourceというコンボボックスを持っています。コンボボックスの表示メンバーにテキストボックスをバインドする
結合は、このようなものです:
<ComboBox Grid.Row="1" Grid.Column="1" KeyboardNavigation.TabIndex="0" Width="300"
ItemsSource="{Binding Path=MainConfigItems, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
SelectedValuePath="Id"
DisplayMemberPath="Name"
SelectedItem="{Binding MainConfigSelectedItem}"
Name="cmbBoxMainConfig"
VerticalAlignment="Center" HorizontalAlignment="Left" IsEnabled="{Binding IsEnabledMainConfig}">
</ComboBox>
さて、条件に基づいて、私はコンボボックスを非表示にし、コンボボックスの表示部材としてのテキストとその場所にテキストボックスを表示する必要があります。この場合、DataRowViewの 'Name'属性。
これを行うにはどうすればよいでしょうか?