private void CTableTblDefaultEBCDICNoSPButton_Click(object sender, RoutedEventArgs e) { Application.Current.MainWindow.Cursor = Cursors.Wait; HexEdit.TypeOfCharacterTable = CharacterTableType.TblFile; HexEdit.LoadDefaultTbl(DefaultCharacterTableType.EbcdicNoSpecialChar); Application.Current.MainWindow.Cursor = null; }
private void CTableTBLDefaultASCIIButton_Click(object sender, RoutedEventArgs e) { Application.Current.MainWindow.Cursor = Cursors.Wait; HexEdit.TypeOfCharacterTable = CharacterTableType.TblFile; HexEdit.LoadDefaultTbl(); Application.Current.MainWindow.Cursor = null; }