반응형 전체 글190 서울 카페쇼 참관객 사전등록 오픈일정 2010. 7. 19. [WPF] 키보드 키 눌렀을때 어떤키인지 알아보자! KeyDown 이벤트 발생 private void LoginWindow1_KeyDown(object sender, KeyEventArgs e) { if (Keyboard.GetKeyStates(Key.Enter) == KeyStates.Down) { MessageBox.Show("엔터키를 누르셨군요"); } } 2010. 7. 19. [WPF] 콤보박스에서 아이템 선택시 문자열 가져오기 selectionchanged 이벤트 발생 private void EventList_SelectionChanged(object sender, SelectionChangedEventArgs e) { ComboBox currentComboBox = sender as ComboBox; if (currentComboBox != null) { ComboBoxItem currentItem = currentComboBox.SelectedItem as ComboBoxItem; if (currentItem != null) { MessageBox.Show(currentItem.Content.ToString()); } } } 참고 : 훈스닷넷 2010. 7. 14. [WPF] 새 WPF창 띄울때 마우스위치에 띄우기 1. 클래스를 생성 class MouseEvent { [DllImport("User32")] public static extern int GetCursorPos(out MyPoint pt); } public struct MyPoint { public int x; public int y; public MyPoint(int _x, int _y) { x = _x; y = _y; } } 2. 사용하기 MyPoint p; AddGrowtemperatureWindow addgrowtemperaturewindow = new AddGrowtemperatureWindow(); MouseEvent.GetCursorPos(out p); addgrowtemperaturewindow.Left = p.x; addgrowtempe.. 2010. 7. 12. 이전 1 ··· 39 40 41 42 43 44 45 ··· 48 다음 반응형