예제 #1
0
파일: Query.cs 프로젝트: vec2link2018/SE
 //cityTbx-->longitudeTbx
 private void CityTbx_KeyPress(object sender, KeyPressEventArgs e)
 {
     if (e.KeyChar == (char)Keys.Enter)
     {
         LongitudeTbx.Focus();
     }
 }
예제 #2
0
파일: Query.cs 프로젝트: vec2link2018/SE
 //latitudeTbx-->longitudeTbx
 private void LatitudeTbx_KeyUp(object sender, KeyEventArgs e)
 {
     if (e.KeyValue == 38)
     {
         LongitudeTbx.Focus();
     }
 }
예제 #3
0
파일: Query.cs 프로젝트: vec2link2018/SE
 //cityTbx-->longitudeTbx
 private void CityTbx_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyValue == 40)
     {
         LongitudeTbx.Focus();
     }
 }