Exemplo n.º 1
0
        private void Goto_Click(object sender, EventArgs e)
        {
            string s = Interaction.InputBox("轉到");

            if (s == "")
            {
                return;
            }
            if (!new Regex("^[0-9A-Fa-f]+$").IsMatch(s))
            {
                s = Unicode.Encode(s)[0];
            }
            first = Convert.ToInt32(s, 16) / 0x100 * 0x100;
            ShowCharacters();
            lvCharmap.Items[Convert.ToInt32(s, 16) % 0x100].Selected = true;
            lvCharmap.Focus();
        }