A solution can be to disable completly the control at Rutime (naturally by coding):
Code:
[AddInExtension("Disable ETM", "Your Project Wizard Extension Description")]
public class DisableTrend : IProjectWizardExtension
{
[DllImport("user32.dll")]
static extern bool EnableWindow(IntPtr hWnd, bool enable);
public void Run(IProject context, IBehavior behavior)
{
if(context!=null)
{
try
{
Scada.AddIn.Contracts.ScreenElement.IScreenElement myElement = context.ScreenCollection["ETM_Screen"].ScreenElementCollection["ETM_Object"];
if(myElement!=null)
{
EnableWindow((IntPtr)myElement.WindowHandle, false);
}
}
catch (Exception ex)
{
}
}
}
}
}