2009-08-11, 02:00 AM
I am using WizTools and I have a WizUiList that I am trying to get the ScrollUp and ScrollDown buttons to appear.
According to the WizTools Developer Document, to have the scroll buttons appear, you add the following to your skin.xml:
This works great to get the buttons to appear, but that is all they do. I want them to be able to be selected with a mouse, and have the list page up or down. But, I don't want them to become a focusable item.
How do I get the ScrollUp and ScrollDown buttons to appear like the ones in the Music Library, Recordings, etc., that allow you to page up/down in the list, but not become a focusable button? This is where I'm having difficulties.
I've tried the 3 seperate ListPositionInfo, ListScrollUp, and ListScrollDown CompositeImages like the mentioned items above have in their skin.xml files, but I can't get anything to appear.
For example, if my list is called, ExampleList, I would have the following three CompositeImage XML tags:
I know I'm probably missing something simple.
Thanks for any help.
According to the WizTools Developer Document, to have the scroll buttons appear, you add the following to your skin.xml:
Code:
<CompositeImage name="ListPositionInfo" size="10.0,4.5" >
<DrawText text="@positionText" loc="0,0" size="78,100" textStyle="GeneralTextStyle" align="Right" valign="Center" />
<DrawImage filename="..\_CoreImages\up.png" loc="80,0" size="10,100" visible="@moreUp" />
<DrawImage filename="..\_CoreImages\down.png" loc="90,0" size="10,10.0" visible="@moreDown" />
</CompositeImage>
How do I get the ScrollUp and ScrollDown buttons to appear like the ones in the Music Library, Recordings, etc., that allow you to page up/down in the list, but not become a focusable button? This is where I'm having difficulties.
I've tried the 3 seperate ListPositionInfo, ListScrollUp, and ListScrollDown CompositeImages like the mentioned items above have in their skin.xml files, but I can't get anything to appear.
For example, if my list is called, ExampleList, I would have the following three CompositeImage XML tags:
Code:
<CompositeImage name="ExampleListListPositionInfo" size="10.0,4.5" >
<DrawText...
</CompositeImage>
<CompositeImage name="ExampleListListScrollUp" size="10.0,4.5" >
<DrawImage...
</CompositeImage>
<CompositeImage name="ExampleListListScrollDown" size="10.0,4.5" >
<DrawImage...
</CompositeImage>
Thanks for any help.