0

我需要为用户突出显示和操作LongListSelectorUI 上的一个项目。我在代码示例上看到(this)示例,但不能很好地理解它。

如何以编程方式在后面的代码中更改StackPanel属于的内部的背景并在其中SelectedItem添加一个?TextBlock

<phone:LongListSelector.ItemTemplate>
    <DataTemplate>
        <StackPanel Orientation="Horizontal">

        </StackPanel>
    </DataTemplate>
</phone:LongListSelector.ItemTemplate>
4

2 回答 2

1

要使您链接的示例与 StackPanel 一起使用

private void lls_SelectionChanged(object sender, SelectionChangedEventArgs e) {
  var spList = new List<StackPanel>();
  GetItemsRecursive<StackPanel>(lls, ref spList);

  // Selected. 
  if (e.AddedItems.Count > 0 && e.AddedItems[0] != null) {
    foreach (var sp in spList) {
      if (e.AddedItems[0].Equals(sp.DataContext)) {
        sp.Background = new SolidColorBrush(Colors.Green);
        sp.Children.Add(new TextBlock { Text = "Hello" });
      }
    }
  }

  // Unselected. 
  if (e.RemovedItems.Count > 0 && e.RemovedItems[0] != null) {
    foreach (var sp in spList) {
      if (e.RemovedItems[0].Equals(sp.DataContext)) {
        sp.Background = (SolidColorBrush)Resources["PhoneBackgroundBrush"];
        sp.Children.RemoveAt(sp.Children.Count - 1);
      }
    }
  } 
}
于 2013-07-30T01:02:47.137 回答
0

我不确定我是否正确理解了您的问题,因为我是 Windows Phone 开发的新手。这是更改堆栈面板背景并以编程方式向其中添加文本块的代码。

enter code here

    // Constructor
    public MainPage()
    {
        InitializeComponent();
        // change the background of stackpanel
        StackPanel st = new StackPanel();
        SolidColorBrush mysolidbrush = new SolidColorBrush();
        mysolidbrush.Color = Color.FromArgb(255, 100,100,10); // RGB color
        st.Background = mysolidbrush;

        // Adding textblock to the stackpanel 
        TextBlock txtblk = new TextBlock();
        st.Children.Add(txtblk);

    }

最佳,乙

于 2013-07-30T00:56:45.333 回答