To integrate Vietnamese typing capability to standard text components.
http://vietpad.sourceforge.net/library.html
Trong vài trường hợp, chỉ cần một hàng code để thêm chức năng gõ cơ bản vào chương trình của bạn:
In some cases, it takes only one line of code to add the basic typing functionality to your program:
- Code: Select all
textComp.addKeyListener(new VietKeyListener(textComp)); // Java
- Code: Select all
textComp.KeyPress += new KeyPressEventHandler(new VietKeyHandler(textComp).OnKeyPress); // C#
