개정판 97eba451
빌드 수정
Change-Id: I74a4bf51fa235a47fcfb3e74c3922a3a346115d2
KCOM/Messenger/ConversationView.xaml.cs | ||
---|---|---|
219 | 219 |
(lstMessage.Parent as ScrollViewer).ScrollToEnd(); |
220 | 220 |
} |
221 | 221 |
|
222 |
tbContent.KeyDown += async (s, ea) => await OnKeyDownHandler(s, ea);
|
|
222 |
tbContent.KeyDown += OnKeyDownHandler;
|
|
223 | 223 |
} |
224 | 224 |
catch (Exception ex) |
225 | 225 |
{ |
... | ... | |
228 | 228 |
} |
229 | 229 |
} |
230 | 230 |
|
231 |
private async System.Threading.Tasks.Task OnKeyDownHandler(object sender, KeyEventArgs e)
|
|
231 |
private void OnKeyDownHandler(object sender, KeyEventArgs e)
|
|
232 | 232 |
{ |
233 |
|
|
234 | 233 |
if (e.Key == Key.Return) |
235 | 234 |
{ |
236 | 235 |
if (Keyboard.Modifiers != ModifierKeys.Shift) |
내보내기 Unified diff