quote:
Originally posted by markee
quote:
Originally posted by mynetx
ButtonControl/Attributes/DwmAnimations
The only explanation is "Specifies if transition animations are allowed for this control in Windows Vista and above."
This is the animation that vista puts on windows as you open/close/minimise/maximise/etc
Why on earth would it be under ButtonControl then?
It controls fade in/out animations for when you hover over the button and also fading when you press it. Easy to see the difference if you make a small window with 2 buttons, 1 allowed and 1 disallowed.
quote:
Originally posted by mynetx
Window/@TranslationSection
How to use this property in scripts?
I think it's for internal use only.
quote:
Originally posted by mynetx
Control/Position/Origins
Description is "Allows to specify a size that's relative to the opposite border of the window."
That description is pretty terrible actually
but here's what it does:
code:
<Control xsi:type="ButtonControl" Id="TestButton">
<Position Top="20" Left="10" Height="20" Width="100">
<Origins Width="Reverse"/>
</Position>
<Caption>Test Button</Caption>
</Control>
The space with the red arrows is what is specified in Position/@Width, the width between the right edge of the button and the edge of the window's client area.