FrmBog.cs
上传用户:xhd1221
上传日期:2022-05-28
资源大小:186k
文件大小:1k
源码类别:

外挂编程

开发平台:

C/C++

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using Json;
  9. namespace QQWinFarm
  10. {
  11.     public partial class FrmBog : Form
  12.     {
  13.         NewsBog newsbog = new NewsBog();
  14.         public FrmBog()
  15.         {
  16.             InitializeComponent();
  17.         }
  18.         public FrmBog(NewsBog bog)
  19.         {
  20.             newsbog = bog;
  21.             InitializeComponent();
  22.         }
  23.         private void FrmBog_Load(object sender, EventArgs e)
  24.         {
  25.             for (int x = 0; x < newsbog.FruitPicking.GetCollection().Count; x++)
  26.             {
  27.                 JsonObject json =new JsonObject(newsbog.FruitPicking.GetCollection()[x].GetValue(0));
  28.                 if (json != null)
  29.                 {
  30.                     lbInfo.Items.Add("采摘(" + Utils.ConvertUnicodeStringToChinese(json.GetValue("name")) +") "+
  31.                  json.GetValue("num") + "个");
  32.                 }
  33.                 }
  34.               
  35.         }
  36.     }
  37. }