개정판 e907328e
issue #809 readOnly Mode 일 때 page 입력 + Enter 시 Page 이동이 안되는 현상
KCOM/Events/Implementation/TopMenuEvent.cs | ||
---|---|---|
1269 | 1269 |
//} |
1270 | 1270 |
} |
1271 | 1271 |
|
1272 |
//강인구 추가페이지 이동 엔터
|
|
1272 |
//추가페이지 이동 엔터 |
|
1273 | 1273 |
private void tlcurrentPage_KeyDown(object sender, KeyEventArgs e) |
1274 | 1274 |
{ |
1275 | 1275 |
//강인구 추가 tlcurrentPage을 이상하게 입력할수 있기때문에 Try Catch |
... | ... | |
1293 | 1293 |
} |
1294 | 1294 |
} |
1295 | 1295 |
|
1296 |
private void tlcurrentPage_readonly_KeyDown(object sender, KeyEventArgs e) |
|
1297 |
{ |
|
1298 |
//강인구 추가 tlcurrentPage을 이상하게 입력할수 있기때문에 Try Catch |
|
1299 |
if (e.Key == Key.Enter) |
|
1300 |
{ |
|
1301 |
try |
|
1302 |
{ |
|
1303 |
var instanceMain = this.ParentOfType<MainWindow>(); |
|
1304 |
instanceMain.dzMainMenu.pageNavigator.GotoPage(Convert.ToInt32(tlcurrentPage_readonly.Text)); |
|
1305 |
} |
|
1306 |
catch (Exception) |
|
1307 |
{ |
|
1308 |
RadWindow.Alert(new DialogParameters |
|
1309 |
{ |
|
1310 |
Theme = new VisualStudio2013Theme(), |
|
1311 |
Header = "안내", |
|
1312 |
Content = "페이지 번호를 정확하게 입력해 주세요", |
|
1313 |
}); |
|
1314 |
} |
|
1315 |
|
|
1316 |
} |
|
1317 |
} |
|
1318 |
|
|
1296 | 1319 |
public event EventHandler<WindowClosedEventArgs> Closed; |
1297 | 1320 |
|
1298 | 1321 |
//private void CheckEvent(object sender, RoutedEventArgs e) |
내보내기 Unified diff