Exemplo n.º 1
0
        private void btnFont_Click(object sender, EventArgs e)
        {
            FontDialog fd = new FontDialog();

            if (fd.ShowDialog() == DialogResult.OK)
            {
                NotesOrganizer.SetFont(fd.Font);
            }
            Notes.Properties.Settings.Default.UserFont = fd.Font;
            Notes.Properties.Settings.Default.Save();
        }