示例#1
0
        private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            for (int i = 0; i < valuelist.Count; i++)
            {
                mongodata mdata = new mongodata()
                {
                    GridFS名称 = valuelist[i][0],
                    数据库名     = valuelist[i][1],
                    建库时间     = valuelist[i][2],
                    入库时间     = valuelist[i][3],
                    数据类型     = valuelist[i][4],
                    Left     = valuelist[i][5],
                    Top      = valuelist[i][6],
                    Right    = valuelist[i][7],
                    Bottom   = valuelist[i][8],
                    最小层级     = valuelist[i][9],
                    最大层级     = valuelist[i][10],
                    描述       = valuelist[i][11]
                };



                TreeListNode node = new TreeListNode(mdata);


                this.treeview.Nodes.Add(node);
            }
        }
示例#2
0
        private void Window_Loaded(object sender, RoutedEventArgs e)
        {
           
                     

            

            for (int i = 0; i < valuelist.Count; i++)
            {




                mongodata mdata = new mongodata()
                {
                    GridFS名称 = valuelist[i][0],
                    数据库名 = valuelist[i][1],
                    建库时间 = valuelist[i][2],
                    入库时间 = valuelist[i][3],
                    数据类型 = valuelist[i][4],
                    Left = valuelist[i][5],
                    Top = valuelist[i][6],
                    Right = valuelist[i][7],
                    Bottom = valuelist[i][8],
                    最小层级 = valuelist[i][9],
                    最大层级 = valuelist[i][10],
                    描述 = valuelist[i][11]

                };


               
                
                TreeListNode node = new TreeListNode(mdata);
                
                
                this.treeview.Nodes.Add(node);



            }
            
            
        }
示例#3
0
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            List <mongodata> results = new List <mongodata>();

            foreach (TreeListNode node in this.treeview.Nodes)
            {
                if (node.IsChecked == true)
                {
                    mongodata checkdata = node.Content as mongodata;
                    results.Add(checkdata);
                }
            }

            if (results.Count != 0)
            {
                JObject jsonlist = new JObject();     //作为传入PHP的Json串
                for (int i = 0; i < results.Count; i++)
                {
                    JObject resultjson = new JObject();
                    resultjson.Add(new JProperty("GridFS名称", results[i].GridFS名称));
                    resultjson.Add(new JProperty("数据库名", results[i].数据库名));
                    jsonlist.Add(new JProperty(i.ToString(), resultjson));
                }

                //string url = "http://172.17.30.109:44444/Mongo/makeconf.php";
                string     url         = "http://" + targetip + ":44444/Mongo/makeconf.php";
                HttpModuel httpm       = new HttpModuel();
                string     finalresult = httpm.postjson(url, jsonlist.ToString());
                if (finalresult == "OK")
                {
                    MessageBox.Show("配置文件已重新生成,点击重启服务应用新数据集");
                }
                else
                {
                    MessageBox.Show("服务器故障");
                }
            }
            else
            {
                MessageBox.Show("请至少选择一个数据集");
            }
        }