WPF 에서 Keyboard 입력 하기 Winfom SendKeys 같은..
# 3) .Net ( Vs 2008 )/WPF2011. 9. 8. 14:00
http://social.msdn.microsoft.com/forums/en-US/wpf/thread/a80296be-e810-449a-843e-bba4a31c1b0e/
KeyEventArgs enter = new KeyEventArgs( Keyboard.PrimaryDevice , Keyboard.PrimaryDevice.ActiveSource , 0, Key.Enter );
enter.RoutedEvent = Keyboard.KeyDownEvent;
enter.Source = 대상객체;
InputManager.Current.ProcessInput(enter);
'# 3) .Net ( Vs 2008 ) > WPF' 카테고리의 다른 글
이벤트를 한곳에 몰아주기?? (0) | 2015.09.09 |
---|---|
WPF Textbox의 Numeric! (0) | 2015.09.05 |
FlexGrid : WPF 콤보 컬럼 (Combo Column Type) (0) | 2010.09.07 |
IValueConverter 사용 데모 (0) | 2010.09.06 |
WPF 쓰레드 ( 프로그래스바 ) (0) | 2010.08.10 |