개정판 b35682c3
issue #0007 angle 문제 수정( Key event가 이상함)
Change-Id: I7af7ff329c12375823c4111233f091ad6a7dcdaa
KCOM/MainWindow.xaml.cs | ||
---|---|---|
53 | 53 |
{ |
54 | 54 |
App.splashString(ISplashMessage.MAINWINDOW); |
55 | 55 |
this.Loaded += MainWindow_Loaded; |
56 |
this.KeyDown += new KeyEventHandler(KeyEventDownAction); |
|
56 |
|
|
57 |
this.AddHandler(Keyboard.KeyDownEvent, |
|
58 |
new KeyEventHandler((sender, e) =>KeyEventDownAction(sender, e)),true); |
|
59 |
|
|
60 |
//this.PreviewKeyDown += new KeyEventHandler(KeyEventDownAction); |
|
57 | 61 |
//this.SourceInitialized += new EventHandler(win_SourceInitialized); |
58 | 62 |
} |
59 | 63 |
|
내보내기 Unified diff