Silverlight ComboBoxに画像とテキストを表示したいとします。 WPFでItemTemplateを使ってイメージと名前で色を表示した例が見つかりました。 Silverlightでは、同じxmlが空白行になります。したがって、アイテムごとにアイテムが生成され、Nameプロパティにバインドされません。 SilverlightにはWPF以外のバインディングが必要ですか? Color
動作しませんの名前に結合することによってRectangle
のFill
を設定しようとsilverlightコンボボックスのアイテムテンプレートバインディング
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
cmbColors.ItemsSource = typeof(Colors).GetProperties();
}
}
XML
<UserControl x:Class="SilverlightColors.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<StackPanel >
<ComboBox Name="cmbColors" >
<ComboBox.ItemTemplate >
<DataTemplate >
<StackPanel Orientation="Horizontal">
<Rectangle Fill="{Binding Name}" Width="16" Height="16" Margin="0,2,5,2"/>
<TextBlock Text="{Binding Name}"/>
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
</StackPanel>
</Grid>
</UserControl>