zoukankan      html  css  js  c++  java
  • 后台代码实现ListBox

                    for (int i = 0; i < ladata[0]._arrayProduct.Count; i++)
                    {
                        StackPanel st_all = new StackPanel() { Orientation = System.Windows.Controls.Orientation.Vertical };
                        StackPanel st = new StackPanel() { Width = 480, Height = 100, Margin = new Thickness(0) };
                        st.Orientation = System.Windows.Controls.Orientation.Vertical;
                        st.HorizontalAlignment = HorizontalAlignment.Left;

                        TextBlock updata = new TextBlock();
                        updata.Foreground = new SolidColorBrush(Colors.Black);
                        updata.TextAlignment = TextAlignment.Left;
                        updata.Height = 40;
                        updata.Width = 480;
                        updata.FontSize = 30;
                        updata.Text = ladata[0]._arrayProduct[i].Name;

                        TextBlock middata = new TextBlock();
                        middata.Foreground = new SolidColorBrush(Colors.Black);
                        middata.TextAlignment = TextAlignment.Left;
                        middata.Height = 30;
                        middata.Width = 480;
                        middata.Text = ladata[0]._arrayProduct[i].dist;

                        TextBlock downdata = new TextBlock();
                        downdata.Foreground = new SolidColorBrush(Colors.Black);
                        downdata.TextAlignment = TextAlignment.Left;
                        downdata.Height = 30;
                        downdata.Width = 480;
                        downdata.FontSize = 24;
                        downdata.Text = ladata[0]._arrayProduct[i].address;

                        st.Children.Add(updata);
                        st.Children.Add(middata);
                        st.Children.Add(downdata);

                        Line l1 = new Line() { X1 = 0, X2 = 480, Stroke = lines.Stroke };

                        st_all.Children.Add(st);
                        st_all.Children.Add(l1);
                        listBox1.Items.Add(st_all);
                    }

  • 相关阅读:
    [Swift]LeetCode646. 最长数对链 | Maximum Length of Pair Chain
    [Swift]LeetCode645. 错误的集合 | Set Mismatch
    [Swift]LeetCode643. 子数组最大平均数 I | Maximum Average Subarray I
    [Swift]LeetCode641. 设计循环双端队列 | Design Circular Deque
    [Swift]LeetCode640. 求解方程 | Solve the Equation
    [Swift]LeetCode639. 解码方法 2 | Decode Ways II
    [Swift]LeetCode638. 大礼包 | Shopping Offers
    [Swift]LeetCode637. 二叉树的层平均值 | Average of Levels in Binary Tree
    [Swift]LeetCode636. 函数的独占时间 | Exclusive Time of Functions
    (4.2)动态管理视图DMV
  • 原文地址:https://www.cnblogs.com/androllen/p/2772129.html
Copyright © 2011-2022 走看看