This commit is contained in:
2009-07-08 10:55:05 +00:00
parent 16c18eef17
commit 509b79481a
5 changed files with 741 additions and 491 deletions

View File

@@ -1136,7 +1136,7 @@ namespace Volian.Controls.Library
// to name button use unicode rather than desc, desc may have spaces or odd chars
btnCM.Name = "btnCM" + sym.Unicode.ToString();
btnCM.Tooltip = sym.Desc;
btnCM.Tag = string.Format(@"\u{0}", sym.Unicode);
btnCM.Tag = string.Format(@"{0}", sym.Unicode);
btnCM.FontBold = true;
btnCM.Click += new System.EventHandler(btnSym_Click);
galSymbols.SubItems.Add(btnCM);