Implementing a scripting language in C#

后端 未结 7 1480
孤城傲影
孤城傲影 2020-12-09 14:32

We got a project where we\'re supposed to let 3rd party developers create their own GUI / CodeBehind drivers. Our GUI is running on WPF.

Now, we got a number of poss

7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-09 15:12

    Lua plus LuaInterface is the choice for our current project - just register methods from your API with LuaInterfcae and they can be called from script code. Our user interface uses Scintilla and ScintillaNET for script editors.

    This is probably not the best solution for building complex user interfaces, but it is possible.

提交回复
热议问题