示例#1
0
    protected virtual void CreatePickForSellDialogView(out PickForSellDialogView pickForSellDialog)
    {
        DialogBean dialogData = new DialogBean();

        dialogData.title  = TextHandler.Instance.manager.GetTextById(3101);
        pickForSellDialog = DialogHandler.Instance.CreateDialog <PickForSellDialogView>(DialogEnum.PickForSell, this, dialogData);
    }
示例#2
0
 /// <summary>
 /// 创建出售数据
 /// </summary>
 /// <param name="pickForSellDialog"></param>
 protected override void CreatePickForSellDialogView(out PickForSellDialogView pickForSellDialog)
 {
     base.CreatePickForSellDialogView(out pickForSellDialog);
     pickForSellDialog.SetData(mCarpenterListData);
 }