溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

基本控件RepeatButton控件

發(fā)布時(shí)間:2020-07-05 08:07:52 來源:網(wǎng)絡(luò) 閱讀:442 作者:windows_phone 欄目:開發(fā)技術(shù)

 Button控件,從按下、保持到抬起這個(gè)過程,不論按多久都只響應(yīng)一次事件,

 RepeatButton只要按下并保持不松開,就會不斷觸發(fā)按下事件。

  1. <!--LayoutRoot 是包含所有頁面內(nèi)容的根網(wǎng)格--> 
  2.     <Grid x:Name="LayoutRoot" Background="Transparent"> 
  3.         <TextBlock Name="textBlock1"  VerticalAlignment="Center" HorizontalAlignment="Center"  Height="50" Width="150" Text="數(shù)字" Margin="161,12,169,706"></TextBlock> 
  4.         <RepeatButton Height="70" Width="150" Content="aaa" Click="RepeatButton_Click" Margin="161,63,169,635"></RepeatButton> 
  5.     </Grid> 

C#代碼:

  1. int i = 0
  2.         private void RepeatButton_Click(object sender, RoutedEventArgs e) 
  3.         { 
  4.             i++; 
  5.             this.textBlock1.Text = i.ToString(); 
  6.         } 

 

向AI問一下細(xì)節(jié)

免責(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)容。

AI