Exemplo n.º 1
0
        public void SaveButtonClickExecute(object obj)
        {
            string path = obj as string;

            if (path == null)
            {
                return;
            }
            System.IO.File.WriteAllText(path, Text);
            Ressources.reloadScript(path);
        }