Пример #1
0
        /// <summary>
        /// 摘牌列表重新刷新
        /// </summary>
        private void RefrashDelistBrandControlView()
        {
            if (m_ownerControl == null)
            {
                return;
            }
            TradingInfoControl control = m_ownerControl as TradingInfoControl;

            control.InitializeDelistBrandList(m_vo);
        }
Пример #2
0
        /// <summary>
        /// 摘牌输入交收价格
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void USeMenuTripDelistBrandTradingInputClick(object sender, EventArgs e)
        {
            InputTradingPriceForm form = new InputTradingPriceForm(m_delistInfo);

            form.ShowDialog();

            //核销成功刷新摘牌列表/成交列表
            bool checkResult = form.Result;

            if (checkResult)
            {
                if (m_ownerControl == null)
                {
                    return;
                }
                TradingInfoControl control = m_ownerControl as TradingInfoControl;
                control.InitializeDelistBrandList(m_vo);
                control.InitializeTradedBrandList(m_vo);
            }

            RefrashDelistBrandControlView();
        }