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);
                    }

  • 相关阅读:
    关于Spring的69个面试问答——终极列表
    阿里内部分享:我们是如何?深度定制高性能MySQL的
    转载:SqlServer数据库性能优化详解
    SQL Server 中WITH (NOLOCK)浅析
    使用druid连接池带来的坑testOnBorrow=false
    opencms9.0安装
    POJ 1201-Intervals(差分约束系统)
    SQL Server 为代码减负之存储过程
    XMPP系列(四)---发送和接收文字消息,获取历史消息功能
    【POJ 2482】 Stars in Your Window(线段树+离散化+扫描线)
  • 原文地址:https://www.cnblogs.com/androllen/p/2772129.html
Copyright © 2011-2022 走看看