Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

AVEVA™ Work Tasks

SFControl​.cs

  • Last UpdatedMar 12, 2021
  • 1 minute read

using Corp.CustomControls;

using Skelta.Forms.Core.Controls;

using Skelta.Forms.Core.External;

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

namespace Skelta.Forms.ExternalControls

{

class SFControls : IExternalControls

{

#region IExternalControls Members

BaseControl IExternalControls.GetControl(string controlFullName)

{

switch (controlFullName)

{

case "Corp.CustomControls.TreeView":

return new TreeView();

default:

return null;

}

}

object[] IExternalControls.GetControls()

{

return new object[] { new TreeView() };

}

#endregion

}

}

TitleResults for “How to create a CRG?”Also Available in