私の WPF プロジェクトでは、ColumnDefinition Width から TextBox Width プロパティをバインドしたいと考えています。今、それは機能していません!
コンバーター (GridLengthConverter) を使用して、データを幅に変換しました。
これは私のコードです:
<TextBox Grid.Column="1" Grid.Row="1" Style="{StaticResource SearchWhite}" Name="tbSearch"
Visibility="{Binding RelativeSource={RelativeSource AncestorType={x:Type mic:DataGrid}},
Path=ShowSearchBoxes, Converter={StaticResource visibleConverter}}" Width="{Binding
RelativeSource={RelativeSource FindAncestor,AncestorType={x:Type ColumnDefinition}},
Path=Width, Converter={StaticResource gridLengthConverter}, Mode=TwoWay}"/>
gridLengthConverter は、アセンブリ: PresentationFramework の GridLengthConverter です。
「データ属性 'Converter' を変換できません...」というエラーが表示されます (フランス語からの翻訳)。
誰かが助けることができますか?