2012-05-30 70 views

回答

1

沒有爲BackButtonPress

事件
protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e) 
+0

我知道這個事件) – revolutionkpi

+0

呃,那麼最新的問題是什麼?像SENTHIL在下面給出的那樣嘗試在櫃檯內放置一個櫃檯。 – alfah

1

你嘗試這樣。

int counter =0; 

protected override void OnBackKeyPress 
        (System.ComponentModel.CancelEventArgs e) 
{ 
    base.OnBackKeyPress(e); 

    counter++; 

    textbox1.text = counter.tostring(); 

    navigation process; 
} 
+0

現在它適合你嗎? –

相關問題