November 26, 2012
DotNetBar ButtonItem include built-in symbol library. At design-time symbols are set using visual editor provided for Symbol property which makes choice of symbol easy. From code however, you need to use symbol unicode. That code would look like this: C#: button.Symbol = "\uf060";button.Symbol = "\uf060"; VB: button.Symbol = ChrW("&Hf060")button.Symbol = ChrW("&Hf060") Since we included 2 […]