visual-programming

Visual Programming Language Control

房东的猫 提交于 2019-12-04 22:24:47
问题 Is there a .NET based (WinForm or WPF) control that allows simple visual programming (assignments, boolean expressions, and math expressions)? Something like Microsoft VPL, only embeddable and supported. 回答1: There is a new open source library out there: TUM.CMS.VPLControl. Get it here. 来源: https://stackoverflow.com/questions/4269439/visual-programming-language-control

The tool for visual programming

回眸只為那壹抹淺笑 提交于 2019-11-30 05:51:08
I need the tool for graphical representing of work flow in a program (like electronic circuits are described with graphical representation). The representation has to be like the following: functions are boxes and arrows between boxes are "messages". Like this: alt text http://img372.imageshack.us/img372/8471/functionsqv0.png This picture shows the following: (c (a) (b)) Where parameters of c() are named as d and e. On C it would be void c( someType1 d, someType2 e ); someType1 a( void ); someType2 b( void ); .... c( a(), b() ); So I think that I need the tool for manipulation and visual

The tool for visual programming

左心房为你撑大大i 提交于 2019-11-29 04:07:50
问题 I need the tool for graphical representing of work flow in a program (like electronic circuits are described with graphical representation). The representation has to be like the following: functions are boxes and arrows between boxes are "messages". Like this: alt text http://img372.imageshack.us/img372/8471/functionsqv0.png This picture shows the following: (c (a) (b)) Where parameters of c() are named as d and e. On C it would be void c( someType1 d, someType2 e ); someType1 a( void );