Exemplo n.º 1
0
    void OnResponseButtonClick()
    {
        var controller = ResponseController.Open(PageManager.Instance.transform, () => Show(), "Prefabs/Pages/CreateResponsePanel");

        controller.ResponseCallback += () =>
        {
            Show();
            OnReloadButtonClick();
        };
        controller.SetParentArticleId(_model.ParentArticle.Id);
        Hide();
    }