2016-04-11 74 views
0

這是我的代碼。觸摸打字程序。什麼是標籤類型的數字?

private void form_onKeyPressed(object sender, KeyEventArgs e) 
{ 
    highlightKeyPressed(e.KeyCode.ToString()); 
    //if user pressed shift both shift buttons are highlighted 
    if (buttonShift2.BackColor == Color.BlueViolet) 
    { 
     buttonShift1.BackColor = Color.BlueViolet; 
    } 
} 
private void form_KeyUp(object sender, KeyEventArgs e) 
{ 
    if (e.KeyCode != Keys.Enter) 
    { 
     resetColors(); 
    } 
} 

它適用於字母和0而不適用於其他數字。

我使用標籤屬性的字母。數字的標籤是什麼?

回答

0

帖是標籤的對於號碼:

1- D1 2 -D2 3 -D3 4-D4 5-D5 6-D6 7-D7 8-D8 9-D9

0-0這就是爲什麼0工作。