Ejemplo n.º 1
0
        private void OnOkBtnClickHandler()
        {
            string msg;
            string curValue = _inputField.text;

            if (_nodeAttr.IsValueAvailable(curValue, out msg))
            {
                _nodeAttr.SetValue(curValue);

                Close();
            }
            else
            {
            }
        }