您好,登錄后才能下訂單哦!
Button控件,從按下、保持到抬起這個(gè)過程,不論按多久都只響應(yīng)一次事件,
RepeatButton只要按下并保持不松開,就會不斷觸發(fā)按下事件。
- <!--LayoutRoot 是包含所有頁面內(nèi)容的根網(wǎng)格-->
- <Grid x:Name="LayoutRoot" Background="Transparent">
- <TextBlock Name="textBlock1" VerticalAlignment="Center" HorizontalAlignment="Center" Height="50" Width="150" Text="數(shù)字" Margin="161,12,169,706"></TextBlock>
- <RepeatButton Height="70" Width="150" Content="aaa" Click="RepeatButton_Click" Margin="161,63,169,635"></RepeatButton>
- </Grid>
C#代碼:
- int i = 0;
- private void RepeatButton_Click(object sender, RoutedEventArgs e)
- {
- i++;
- this.textBlock1.Text = i.ToString();
- }
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。