Esempio n. 1
0
 IFlowNode IFlow.CreateNode(int x, int y, int width, int height, string form, string caption)
 {
     var node = new FlowNode(Session)
     {
         Caption = caption,
         Form = form,
         Flow = this,
         X = x,
         Y = y,
         Width = width,
         Height = height
     };
     return node;
 }