示例#1
0
 /// <summary>
 /// 重新加载挂牌列表
 /// </summary>
 private void Instance_UpdataAllCommodityEvent()
 {
     if (wk1 != null && wk2 != null)
     {
         wk1.LoadUrl(Helper.GetURL(HTTPServiceUrlCollection.History));
         wk2.LoadUrl(Helper.GetURL(HTTPServiceUrlCollection.BasicManagement));
     }
     UpdateTable();
 }
示例#2
0
 public void LoadUrl(string url)
 {
     if (wk != null)
     {
         wk.LoadUrl(url);
     }
 }
示例#3
0
 public void SetHouse(string url)
 {
     if (bc != null)
     {
         bc.LoadUrl(url);
     }
     else
     {
         bc = new BsCtl(this, url, "capital");
     }
 }