Exemple #1
0
 /// <summary>
 /// Called when the designer wants to save the general module configuration.
 /// </summary>
 /// <param name="configControl">The configuration control given returned from <see cref="Development.SDK.Module.Interfaces.Kernel.Module.IModule.LoadConfig"/>.</param>
 public void SaveGlobalConfig(System.Windows.Controls.Control configControl, out Development.SDK.Module.Data.Kernel.Module.NodeParameter[] parameters)
 {
     // set default parameter value
     parameters = new Development.SDK.Module.Data.Kernel.Module.NodeParameter[0];
 }
Exemple #2
0
 /// <summary>
 /// Called when the designer wants to save the configuration.
 /// </summary>
 /// <param name="processId">Id of the process that contains the node.</param>
 /// <param name="processNodeId">The id of the node to save the config for.</param>
 /// <param name="configControl">The configuration control given returned from <see cref="Development.SDK.Module.Interfaces.Kernel.Module.IBaseNode.LoadConfig"/>.</param>
 public void SaveConfig(Guid processId, Guid processNodeId, System.Windows.Controls.Control configControl, out Development.SDK.Module.Data.Kernel.Module.NodeParameter[] parameters)
 {
     // TODO: Use the user control to save the configuration
     parameters = new Development.SDK.Module.Data.Kernel.Module.NodeParameter[0];
 }