コード例 #1
0
    public void OnClickTab(IUIObject obj)
    {
        UIPanelTab uIPanelTab = obj as UIPanelTab;

        if (uIPanelTab.panel.index == uIPanelTab.panelManager.CurrentPanel.index)
        {
            return;
        }
        this.m_eAuctionRegisterType = (AuctionDefine.eAUCTIONREGISTERTYPE)uIPanelTab.panel.index;
        this.SelectTab(this.m_eAuctionRegisterType);
    }
コード例 #2
0
 public void SelectTab(AuctionDefine.eAUCTIONREGISTERTYPE eAuctionRegisterType)
 {
     this.ChangeTab();
     if (eAuctionRegisterType != AuctionDefine.eAUCTIONREGISTERTYPE.eAUCTIONREGISTERTYPE_ITEM)
     {
         if (eAuctionRegisterType == AuctionDefine.eAUCTIONREGISTERTYPE.eAUCTIONREGISTERTYPE_SOL)
         {
             this.ShowSolList();
         }
     }
     else
     {
         this.ShowItemList();
     }
 }
コード例 #3
0
 public void SelectTab()
 {
     this.ChangeTab();
     AuctionDefine.eAUCTIONREGISTERTYPE eAuctionRegisterType = this.m_SearchOption.m_eAuctionRegisterType;
     if (eAuctionRegisterType != AuctionDefine.eAUCTIONREGISTERTYPE.eAUCTIONREGISTERTYPE_ITEM)
     {
         if (eAuctionRegisterType == AuctionDefine.eAUCTIONREGISTERTYPE.eAUCTIONREGISTERTYPE_SOL)
         {
             this.ShowSolInfo();
         }
     }
     else
     {
         this.ShowItemInfo();
     }
 }
コード例 #4
0
 public void Set(AuctionSearchOption SearchOption)
 {
     this.m_eAuctionRegisterType = SearchOption.m_eAuctionRegisterType;
     this.m_eItemType            = SearchOption.m_eItemType;
     this.m_iUseMinLevel         = SearchOption.m_iUseMinLevel;
     this.m_iUseMaxLevel         = SearchOption.m_iUseMaxLevel;
     this.m_iItemSkillUnique     = SearchOption.m_iItemSkillUnique;
     this.m_iItemSkillLevel      = SearchOption.m_iItemSkillLevel;
     this.m_iItemTradeCount      = SearchOption.m_iItemTradeCount;
     this.m_bySolSeason          = SearchOption.m_bySolSeason;
     this.m_iSolLevel            = SearchOption.m_iSolLevel;
     this.m_strSolName           = SearchOption.m_strSolName;
     this.m_iSolTradeCount       = SearchOption.m_iSolTradeCount;
     this.m_lCostMoney           = SearchOption.m_lCostMoney;
     this.m_lDirectCostMoney     = SearchOption.m_lDirectCostMoney;
     this.m_iCostHearts          = SearchOption.m_iCostHearts;
     this.m_iCostDirectHearts    = SearchOption.m_iCostDirectHearts;
     this.m_ePayType             = SearchOption.m_ePayType;
 }