1
セパレータで区切られた2つの項目のリストを含むコンボボックスを使用しています。 私はそれをこのように構築:セパレータの位置にセパレータがあるコンボボックス
public static ObservableCollection<object> Merge<T, U>(IEnumerable<T> collection1, IEnumerable<U> collection2, bool includeSeparator = true)
{
if (collection1 == null || collection2 == null)
{
throw new ArgumentNullException(collection1 == null ? "collection1" : "collection2");
}
List<object> tmp = new List<object>();
tmp.AddRange(collection1.Cast<object>());
if (includeSeparator)
{
tmp.Add(string.Empty);
}
tmp.AddRange(collection2.Cast<object>());
var ret = new ObservableCollection<object>(tmp);
return ret;
}
をとXAMLに:それは働いている
<ComboBox
ItemsSource="{Binding Path=AllValues}"
SelectedValue="{Binding Path=SelectedId, Mode=TwoWay, ValidatesOnDataErrors=True}"
SelectedValuePath="Id"
ItemTemplate="{StaticResource CustomItemTemplate}">
<ComboBox.ItemContainerStyle>
<Style TargetType="{x:Type ComboBoxItem}" BasedOn="{StaticResource {x:Type ComboBoxItem}}">
<Style.Triggers>
<DataTrigger Binding="{Binding}" Value="">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ComboBoxItem}">
<Separator HorizontalAlignment="Stretch" IsEnabled="False"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</DataTrigger>
</Style.Triggers>
</Style>
</ComboBox.ItemContainerStyle>
</ComboBox>
予想通り、私はリストに挿入されたセパレータの存在を持っています。 SelectedId
がヌルの場合、コンボボックスが開き、次の図のように上部に区切り文字が表示されます(スクロールバーがスクロールしてリストの上部に区切り文字が表示されます)。
あなたは上部にあるリストの開口部を持っている任意の方法を知っていますか?
ありがとうございます。
:このため
あなたはまたにDataTriggerを変更する必要があります。 –