XML code:
<Control xsi:type="ButtonControl" Id="BtnPlane">
<Position Top="165" Width="300" Height="20" Left="10"/>
<Image>
<Name>Icons/airplane</Name>
</Image>
</Control>
It should be
XML code:
<Control xsi:type="ButtonControl" Id="BtnPlane">
<Position Top="165" Width="300" Height="20" Left="10"/>
<Image>
<Name>Icons\airplane</Name>
<Format>GIF</Format> <!-- added by pollolibredegrasa -->
</Image>
</Control>
You have the slash backwards.
Also you have two <Element
s> tags
XML code:
<Elements>
<Element xsi:type="LineElement" Id="FigLineVersion">
<Position Top="25" Left="10" Height="0" Width="520"/>
<Color><GlobalColor>bg</GlobalColor></Color>
</Element>
</Elements>
<Elements>
<Element xsi:type="LineElement" Id="FigLineVersion1">
<Position Top="325" Left="130" Height="0" Width="260"/>
<Color><GlobalColor>bg</GlobalColor></Color>
</Element>
</Elements>
Should be
XML code:
<Elements>
<Element xsi:type="LineElement" Id="FigLineVersion">
<Position Top="25" Left="10" Height="0" Width="520"/>
<Color><GlobalColor>bg</GlobalColor></Color>
</Element>
<Element xsi:type="LineElement" Id="FigLineVersion1">
<Position Top="325" Left="130" Height="0" Width="260"/>
<Color><GlobalColor>bg</GlobalColor></Color>
</Element>
</Elements>