サンプルComboBox
がこのように定義されているとします。私がやりたい何WPF:ComboBox:Style/ControlTemplateでDataTemplateバインディングを公開する
<ComboBox ItemsSource="{Binding Path=Bikes}"
HorizontalAlignment="Stretch">
<ComboBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Ellipse Fill="{DynamicResource AccentColorBrush}"
Height="15"
Width="15"
VerticalAlignment="Center"/>
<TextBlock Text="{Binding Type}"
Margin="15, 0, 0, 0"
FontWeight="SemiBold"
Foreground="{DynamicResource AccentColorBrush}"
VerticalAlignment="Center"/>
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
はStyle
でそれをラップし、私は別のプロパティに私がComboBox
を使用するたびにバインドすることができるように、DataTemplate
内ComboBox
とText
財産のItemSource
プロパティを公開することです。
次に**スタイル**でラップすると**エラー**が発生しましたか? –