Ejemplo n.º 1
0
        public void mapLoad()
        {
            int       Index = 0;
            int       s     = 0;
            string    Time  = mapMessage.SettingInfoMap();
            DataTable da    = mapMessage.GetMapData(null);

            if (da != null)
            {
                foreach (DataRow data in da.Rows)
                {
                    if (Time != null)
                    {
                        if (Time.Equals(data["CreateTime"].ToString()))
                        {
                            Index = s;
                        }
                    }
                    ComboBoxItem ite = new ComboBoxItem();
                    ite.Content = data["Name"].ToString();
                    ite.Tag     = data["CreateTime"].ToString();
                    Maplistq.Items.Add(ite);
                    s++;
                }
                Maplistq.SelectedIndex = Index;
            }
        }
Ejemplo n.º 2
0
        /// <summary>
        /// 载入地图信息
        /// </summary>
        private void MapLoad()
        {
            MapMessageBLL messageBLL = new MapMessageBLL();
            DataTable     da         = messageBLL.GetMapData(null);
            string        Times      = mapMessage.SettingInfoMap();

            this.Dispatcher.Invoke(new Action(() =>
            {
                if (da == null)
                {
                    ComboBoxItem item = new ComboBoxItem();
                    item.Content      = "请选择";
                    Maplistq.Items.Add(item);
                    Maplistq.SelectedIndex = 0;
                }
                else
                {
                    int Index         = 0;
                    int s             = 0;
                    ComboBoxItem item = new ComboBoxItem();
                    item.Content      = "请选择";
                    Maplistq.Items.Add(item);
                    foreach (DataRow data in da.Rows)
                    {
                        if (Times != null)
                        {
                            if (Times.Equals(data["CreateTime"].ToString()))
                            {
                                Index = s;
                            }
                        }
                        ComboBoxItem ite = new ComboBoxItem();
                        ite.Content      = data["Name"].ToString();
                        ite.Tag          = data["Width"].ToString() + "," + data["Height"].ToString() + "," + data["CreateTime"].ToString();
                        Maplistq.Items.Add(ite);
                        s++;
                    }
                    mapSelect = true;
                    Maplistq.SelectedIndex = Index + 1;
                }
            }));
        }