Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revisionBoth sides next revision
en:wiki:2.-desarrollo-app:2.3.-codigo:a.-estructura-xml:4.-nodo-frame:start [2018/09/05 18:59] – [Spatial location of the frames and its elements] ejetoroen:wiki:2.-desarrollo-app:2.3.-codigo:a.-estructura-xml:4.-nodo-frame:start [2018/09/05 19:34] – [Definition] ejetoro
Line 13: Line 13:
 **Sintax:** **Sintax:**
 <code xml> <code xml>
- <frame name="id1" ATRIBUTOS/> +<frame name="id1" ... /> 
- + <prop name="PRUEBA" ... /> 
- <!-- Propiedad que se mostrará en la pestaña 1, y en el frame id1 --+ <prop name="PRUEBA2" ... /> 
- <prop name="PRUEBA" group="1" frame="id1" />+ <frame name="id2" ... /
 + <prop name="PRUEBA" ... /> 
 + <prop name="PRUEBA2... /> 
 + </frame
 +</frame>
 </code> </code>
 ====  Spatial location of the frames and its elements  ==== ====  Spatial location of the frames and its elements  ====
Line 28: Line 32:
 \\ \\
 === Floating frames === === Floating frames ===
-A frame can be positioned on a fixed location, "floating" over the screen, keeping away the background screen from being affected by the floating frame .+A frame can be positioned on a fixed location, "floating" over the screen, keeping away the background screen from being affected by the floating frame.\\ 
 +\\ 
 +Positioning is made through the attributes "top" and "left".\\ 
 +\\ 
 +Do not use porcentual values in width and height attributes, try to use pixel values instead.\\ 
 +\\ 
 +<code xml> 
 +<frame name="frmFlotante" floating="true" top="300p" left="200p" width="600p" height="300p" class="FrameAnimateFromRight"
 + ..... 
 +</frame> 
 +</code>