共用方式為


RepeatButton.Interval 屬性

定義

取得或設定時間 (以毫秒為單位),這個時間是開始重複之後重複的間隔時間。 這個值必須為非負數。

public:
 property int Interval { int get(); void set(int value); };
[System.ComponentModel.Bindable(true)]
public int Interval { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Interval : int with get, set
Public Property Interval As Integer

屬性值

開始重複之後重複的間隔時間 (以毫秒為單位)。 預設為 KeyboardSpeed 的值。

屬性

範例

下列範例示範如何使用 Interval 屬性來設定開始重複之後 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>

備註

相依性屬性資訊

識別碼欄位 IntervalProperty
設定為 的中繼資料屬性 true

適用於