私はWindows Phone 7を初めて使用します.1つの疑問があります.動的に作成されたリストボックスで選択した項目にチェックマークを追加する方法です. ユーザーがリストボックス内の別の項目をクリックすると、チェック マークの位置が選択した項目に移動します。どうやってするの?私のコードを以下に示します: XAML コード:
<ListBox Height="669" HorizontalAlignment="Left" Name="listBox1" VerticalAlignment="Top" Width="479" Margin="1,-3.5,0,0" SelectionChanged="listBox1_SelectionChanged" Background="White">
<ListBox.ItemTemplate>
<DataTemplate >
<Border BorderThickness="0,0,0,1.2" BorderBrush="Black" Width="480" >
<StackPanel Background="White" Name="stackpanel1" Width="480" Orientation="Horizontal">
<TextBlock Text="{Binding name}" Height="62" Width="390" FontSize="40" FontFamily="Arial" Foreground="Black" TextAlignment="Left" VerticalAlignment="Center" />
</StackPanel>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
CS コード:
public class list
{
public string name { get; set; }
}
foreach (string s in array)
{
list obj = new list();
obj.name = s;
listBox1.Items.Add(obj);
}
いくつかのコードを教えてください。ありがとうございました。