Exemplo n.º 1
0
        /// <summary>
        /// Handles the Click event of the buttonCharacterMap control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
        private void buttonCharacterMap_Click(object sender, EventArgs e)
        {
            //  Show the character map dialog.
            var characterMapDialog = new FormCharacterMap();

            if (characterMapDialog.ShowDialog() == DialogResult.OK)
            {
            }
        }
Exemplo n.º 2
0
        /// <summary>
        /// Handles the Click event of the buttonCharacterMapShifted control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
        private void buttonCharacterMapShifted_Click(object sender, EventArgs e)
        {
            //  Show the character map dialog.
            var characterMapDialog = new FormCharacterMap();
            if (characterMapDialog.ShowDialog() == DialogResult.OK)
            {

            }
        }