31 lines
1.2 KiB
Plaintext
Executable File
31 lines
1.2 KiB
Plaintext
Executable File
<Composite xmlns="http://www.eclipse.org/xwt/presentation" xmlns:x="http://www.eclipse.org/xwt" x:Class="it.smi.adex.views.PublicAmministrationSettingsPrefPage" x:Name="prefPageComp" background="COLOR_WIDGET_BACKGROUND" xmlns:p1="clr-namespace:it.smi.adex.widgets">
|
|
<Composite.layout>
|
|
<GridLayout numColumns="1"/>
|
|
</Composite.layout>
|
|
|
|
<Label text="Formato" background="COLOR_WIDGET_BACKGROUND"/>
|
|
<Button x:Style="RADIO" x:Name="htmlButton"
|
|
text="HTML (maggior compatibilità con i browser ma richiede più memoria)"
|
|
background="COLOR_WIDGET_BACKGROUND">
|
|
<Button.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true"
|
|
horizontalAlignment="FILL" />
|
|
</Button.layoutData>
|
|
</Button>
|
|
<Button x:Style="RADIO" x:Name="xmlButton"
|
|
text="XML (dipende dal browser)" background="COLOR_WIDGET_BACKGROUND">
|
|
<Button.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true"
|
|
horizontalAlignment="FILL" />
|
|
</Button.layoutData>
|
|
</Button>
|
|
<Button x:Style="RADIO" x:Name="xmlNoStyleButton"
|
|
text="XML semplice (senza stile)" background="COLOR_WIDGET_BACKGROUND">
|
|
<Button.layoutData>
|
|
<GridData grabExcessHorizontalSpace="true"
|
|
horizontalAlignment="FILL" />
|
|
</Button.layoutData>
|
|
</Button>
|
|
|
|
</Composite>
|
|
<!-- Forms API --> |