Okay, as I now want to extend the GUI of Countdown Live, I would like to let the user resize the preferences window. Therefore, the child windows have to resize too... but they don't. This is what the XML looks like:
code:
In <Window Id="WndOptions">:
...
<Position Width="400" Height="275">
<Resizeable Allowed="BothSides">
<MinWidth>400</MinWidth>
<MinHeight>275</MinHeight>
</Resizeable>
</Position>
...
code:
In <Window Id="WndSettings">:
...
<ChildTmpl/>
<Position Width="291" Height="218">
<Resizeable Allowed="BothSides">
<MinWidth>291</MinWidth>
<MinHeight>218</MinHeight>
</Resizeable>
</Position>
...
<Elements>
<Element xsi:type="FigureElement" Id="FigExample">
<Position Top="88" Left="5" Height="40" Width="281">
<Anchor Horizontal="LeftRightFixed" Vertical="BottomFixed"/>
</Position>
<Figure>
<RoundRect><Radius>3</Radius></RoundRect>
</Figure>
<Border>
<Color><GlobalColor>bg</GlobalColor></Color>
</Border>
<Fill>
<PlainColor>
<Red>255</Red>
<Green>255</Green>
<Blue>255</Blue>
<Alpha>120</Alpha>
</PlainColor>
</Fill>
</Element>
</Elements>
...
And this is how the result looks like:
*containg = containing
For the full code, look on
PasteBin.
Any ideas how to fix this?