AVEVA app limitations and restrictions
- Last UpdatedJul 15, 2024
- 1 minute read
-
Events and scripting are not supported
-
Only basic datatype properties configuration
-
Apps cannot be imported from a network share location
-
Collections and arrays are not supported
-
Upgrading Apps is not supported
-
Nested properties can be viewed and configured, but they cannot be configured with data binding
-
To host the .NET controls, use the WPF element WindowsFormHost to wrap the control into WPF.
<UserControl x:Class="AVEVA.Visualization.TrendApp.TrendControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<WindowsFormsHost x:Name="FormsHost" />
</Grid>
</UserControl>