RepeatButton Class
.NET Framework 3.0
Control that raises its Click event repeatedly from the time it is pressed until it is released.
Namespace: System.Windows.Controls.Primitives
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
ContentModel: A RepeatButton is a ContentControl. For more information on the content model for RepeatButton, see ContentControl Content Model.
The following example shows how to create a RepeatButton.
<RepeatButton Width="100" DockPanel.Dock="Top" Delay="500" Interval="100" Click="Increase"> Increase </RepeatButton> <TextBlock Name="valueText" Width="100" DockPanel.Dock="Top" TextAlignment="Center" FontSize="16"> 0 </TextBlock> <RepeatButton Width="100" DockPanel.Dock="Top" Delay="500" Interval="100" Click="Decrease"> Decrease </RepeatButton>
More Code
| How to: Create a Control That Has an Access Key and Text Wrapping | This example shows how to create a control that has an access key and supports text wrapping. The example uses a Label control to illustrate these concepts. |
System.Object
System.Windows.Threading.DispatcherObject
System.Windows.DependencyObject
System.Windows.Media.Visual
System.Windows.UIElement
System.Windows.FrameworkElement
System.Windows.Controls.Control
System.Windows.Controls.ContentControl
System.Windows.Controls.Primitives.ButtonBase
System.Windows.Controls.Primitives.RepeatButton
System.Windows.Threading.DispatcherObject
System.Windows.DependencyObject
System.Windows.Media.Visual
System.Windows.UIElement
System.Windows.FrameworkElement
System.Windows.Controls.Control
System.Windows.Controls.ContentControl
System.Windows.Controls.Primitives.ButtonBase
System.Windows.Controls.Primitives.RepeatButton
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: