| | |
| | | m_ConfirmBtn.AddListener(ConfirmBtn);
|
| | | m_CancleBtn.AddListener( ()=>
|
| | | {
|
| | | ConfirmCancel.OnPopConfirmClickEvent?.Invoke(false);
|
| | | CloseWindow();
|
| | | ConfirmCancel.OnPopConfirmClickEvent?.Invoke(false);
|
| | | });
|
| | | }
|
| | |
|
| | |
| | |
|
| | | private void ConfirmBtn()
|
| | | {
|
| | | ConfirmCancel.OnPopConfirmClickEvent?.Invoke(true);
|
| | | CloseWindow();
|
| | | ConfirmCancel.OnPopConfirmClickEvent?.Invoke(true);
|
| | | }
|
| | |
|
| | |
|
| | | void OnRefreshCell(ScrollerDataType type, CellView cell)
|
| | | {
|
| | | var _cell = cell as ItemsConfirmCell;
|
| | | _cell?.Display(cell.index);
|
| | | _cell?.Display(cell.index, ConfirmCancel.replaceItemName);
|
| | | }
|
| | |
|
| | | void CreateScroller()
|