テキストを左に揃える方法を探していますAutoCompleteBox
だから私は詳細、
オートコンプリート ボックスに関連付けられたテキスト ボックスに対して結果が長すぎるため、欠落している部分があります。
結果が「オートコンプリートボックスの結果」の場合、クリックして選択すると、テキストボックスに表示されます。
しかし、部分表示は「f my autocomplete box」で、「result of my autocomplete」が欲しいです。
ここに私のxamlがあります:
<myControl:AutoCompleteBox x:Name="acp" Grid.Row="0" Grid.Column="1"
HorizontalAlignment="Left" VerticalAlignment="Top"
IsTabStop="False"
MinimumPrefixLength="3"
ItemTemplate="{StaticResource ItemTemplate}"
ValueMemberBinding="{Binding FullName}"
ItemsSource="{Binding Data, ElementName=MySource}"
Text="{Binding FullName, Mode=TwoWay, NotifyOnValidationError=True, ValidatesOnExceptions=True}"
Width="150"
IsTextCompletionEnabled="False"
FilterMode="None" IsDropDownOpen="True"/>
私がはっきりしていることを願っています。ありがとうございました。