程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> .Net語言 APP開發平台——Smobiler學習日志:如何快速實現Timer計時功能,smobilertimer

.Net語言 APP開發平台——Smobiler學習日志:如何快速實現Timer計時功能,smobilertimer

編輯:C#入門知識

.Net語言 APP開發平台——Smobiler學習日志:如何快速實現Timer計時功能,smobilertimer


最前面的話:Smobiler是一個在VS環境中使用.Net語言來開發APP的開發平台,也許比Xamarin更方便

 

一、目標樣式

目標樣式

我們要實現上圖中的效果,需要如下的操作:

1.從工具欄上的”Smobiler Components”拖動一個Timer控件、一個TextBox控件、一個Button控件、一個label控件和一個Image控件到窗體界面上

操作

2.Timer控件的Tick事件

VB:
    Private Sub timer1_Tick(sender As Object, e As EventArgs) Handles timer1.Tick
       Me.TextBox1.Text = (Convert.ToInt32(Me.textBox1.Text.ToString()) - 1).ToString()
   End Sub
C#:
   private void timer1_Tick(object sender, EventArgs e)
   {
       this.textBox1.Text =(Convert.ToInt32(this.textBox1.Text.ToString()) -1).ToString();       
   }

注:調用Timer控件

3.TextBox的TextChanged事件

VB:
   Private Sub textBox1_TextChanged(sender As Object, e As EventArgs) Handles textBox1.TextChanged
        If Me.textBox1.Text = "0" Then
           timer1.Stop()
       Else
           timer1.Start()
       End If
   End Sub
C#:
   private void textBox1_TextChanged(object sender, EventArgs e)
   {
        if(this.textBox1.Text =="0")
       {
           timer1.Stop();
       }
       else
       {
           timer1.Start();
       }
   }

注:判斷條件來選擇開始定時器還是停止定時器

4.Button控件的Click事件

VB:
   Private Sub button1_Click(sender As Object, e As EventArgs) Handles button1.Click
        Me.textBox1.Text = "60"
   End Sub
C#:
   private void button1_Click(object sender, EventArgs e)
   {
        this.textBox1.Text ="60";      
   }

5.修改Timer控件的屬性

a.Interval屬性

觸發Tick事件的間隔時間,以秒為單位,默認設置為“1”,即間隔時間為1秒,見下圖;

界面顯示效果

二、手機效果顯示

界面顯示效果

按鈕按下後的效果顯示:

界面顯示效果

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved