Window settings
[windowSettings]
The window attributes of the following dialogs can be defined in this area.
Configurable dialogs
Id | Description |
---|---|
SupportCase | Create support case |
ServicePortal | Service Portal |
ServicePortaIntegratedBrowser | Built-in browser of the Service Portal |
Configurable attributes
Attribute | Value | Description |
---|---|---|
isMaximized | True, False | Defines if the window should be displayed maximized. |
canMaximize | True, False | Defines if the window can be maximized. |
canResize | True, False | Defines if the window size can be customized. |
sizingMode | Content, Window | Defines how to interpret the specified window size. If Window is selected, the total window sized will be defined. If Content is selected instead, the size of the available internal area (minus the lower area containing the buttons) will be defined. |
width | Eine Zahl > 0 | Window width |
height | Eine Zahl > 0 | Window height |
Example
XML
<configuration version="1.2.0">
<applicationSettings>
...
<!-- Window settings -->
<windowSettings>
<window id="SupportCase" sizingMode="Window" width="650" height="550" canMaximize="False" canResize="False" />
<window id="ServicePortal" sizingMode="Content" width="650" height="550" isMaximized="True" />
<window id="ServicePortalIntegratedBrowser" sizingMode="Content" width="650" height="550" isMaximized="True" />
</windowSettings>
...
</applicationSettings>
</configuration>