我想選擇改變項目的背景顏色,但我似乎無法找到一種方法來做到這一點。
我嘗試使用下面的代碼,但無法找到完成它,我需要到colror設置爲自定義的,如「#8e8e8e」:ListBoxItem背景顏色
private void list_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (list.SelectedItem != null)
{
ListBoxItem a = sender as ListBoxItem;
//a.Background=
PhoneApplicationService.Current.State["test"] = list.SelectedItem;
NavigationService.Navigate(new Uri("/Detail", UriKind.Relative));
}
list.SelectedIndex = -1;
}
,所以我需要爲了簡單起見,將選定的項目背景色從ch#改爲#8E8E8E,因爲改變狀態看起來有點複雜,特別是我需要做的就是改變所選項目的背景顏色。
由於提前,
見編輯的代碼目前爲止 – Ameen