コード例 #1
0
 public CallPanel(CallAction action)
 {
     InitializeComponent();
     this.action = action;
     foreach (Diagram function in GraphManager.GetFunctions())
     {
         this.diagrams.Add(function.Name, function);
         this.cbAsignVariable.Items.Add(function.Name);
     }
 }
コード例 #2
0
 public CallGraphic(string key, CallAction element, Point center)
     : base(key, element, center)
 {
     this.needInit = System.Convert.ToBoolean(Call.NeedInit);
     this.Surface.Blit(new Surface(Call.GraphicIcon));
 }