Intersoft.Client.UI.Aqua Namespace > UXRepeatButton Class : Interval Property |
<CategoryAttribute("Common Properties")> Public Property Interval As Integer
Dim instance As UXRepeatButton Dim value As Integer instance.Interval = value value = instance.Interval
[CategoryAttribute("Common Properties")] public int Interval {get; set;}
[CategoryAttribute("Common Properties")] public: property int Interval { int get(); void set ( int value); }
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()); } |
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