Hi,
I've created several triggers for the memberlist in the xml. When I start typing, the memberlist is shown. S that works fine. However, when I type another letter, the memberlist appears again according that trigger.
Example: I start typing "a" -> memberlist appears | now I type "b" (after the "a")-> the memberlist for the "b" appears. (which it shouldn't)
Once a character has been typed it shouldn't trigger any more. How do I achieve this?
this is what I did in the xml btw:[Modified at 02/16/2012 05:45 AM]
I've created several triggers for the memberlist in the xml. When I start typing, the memberlist is shown. S that works fine. However, when I type another letter, the memberlist appears again according that trigger.
Example: I start typing "a" -> memberlist appears | now I type "b" (after the "a")-> the memberlist for the "b" appears. (which it shouldn't)
Once a character has been typed it shouldn't trigger any more. How do I achieve this?
this is what I did in the xml btw:
<!-- Triggers -->
<Triggers>
<KeyPressTrigger Key="PropertyListTrigger" Character=" ">
<KeyPressTriggerValidStates>
<KeyPressTriggerValidState State="PropertyState" />
</KeyPressTriggerValidStates>
</KeyPressTrigger>
<KeyPressTrigger Key="PropertyListTriggerA" Character="a">
<KeyPressTriggerValidStates>
<KeyPressTriggerValidState State="PropertyState" />
</KeyPressTriggerValidStates>
</KeyPressTrigger>
<KeyPressTrigger Key="PropertyListTriggerB" Character="b">
<KeyPressTriggerValidStates>
<KeyPressTriggerValidState State="PropertyState" />
</KeyPressTriggerValidStates>
</KeyPressTrigger>
<KeyPressTrigger Key="PropertyListTriggerC" Character="c">
<KeyPressTriggerValidStates>
<KeyPressTriggerValidState State="PropertyState" />
</KeyPressTriggerValidStates>
</KeyPressTrigger>