Intersoft ClientUI Documentation
Delay Property (UXRepeatButton)



Gets or sets the amount of time, in milliseconds, the RepeatButton waits while it is pressed before it starts repeating. The value must be non-negative.
Syntax
<CategoryAttribute("Common Properties")>
Public Property Delay As Integer
Dim instance As UXRepeatButton
Dim value As Integer
 
instance.Delay = value
 
value = instance.Delay
[CategoryAttribute("Common Properties")]
public int Delay {get; set;}
[CategoryAttribute("Common Properties")]
public:
property int Delay {
   int get();
   void set (    int value);
}
Remarks

The UXRepeatButton class represents a control that is similar to a UXButton. However, repeat buttons give you control over when and how the Click event occurs. The UXRepeatButton raises the Click event repeatedly from the time it is pressed until it is released. The Delay property determines when the event begins. You can also control the interval of the repetitions with the Interval property.

XAML
Copy Code
<StackPanel>
    <Intersoft:UXRepeatButton Width="100" Delay="500" Interval="100" Click="Increase">
      Increase
    </Intersoft:UXRepeatButton>

    <TextBlock Name="valueText" Width="100"
               TextAlignment="Center" FontSize="16">
      0
    </TextBlock>

    <Intersoft:UXRepeatButton Width="100" Delay="500" Interval="100" 
                  Click="Decrease">
      Decrease
    </Intersoft:UXRepeatButton>
</StackPanel>
C#
Copy Code
void Increase(object sender, RoutedEventArgs e)
{
    Int32 Num = Convert.ToInt32(valueText.Text);

    valueText.Text = ((Num + 1).ToString());
}

void Decrease(object sender, RoutedEventArgs e)
{
    Int32 Num = Convert.ToInt32(valueText.Text);

    valueText.Text = ((Num - 1).ToString());
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

UXRepeatButton Class
UXRepeatButton Members

Send Feedback