Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help with styling toolbar
#2
You can change these attributes when you create a new toolbar instance:
 
Code:
Copy      Help
var t = new toolbar {
    Font = new FontNSS(Size: 14, Name: "Consolas", Bold: true),
    Size = new(100, 100),
    TextColor = new(0xFFFFFF, true),
    BorderColor = new (0x000000, true)
};

or afterwards:
 
Code:
Copy      Help
var t = new toolbar();

t.Font = new FontNSS(Size: 14, Name: "Consolas");
t.Size = new(100, 100);
t.TextColor = new(0xFFFFFF, true);


Messages In This Thread
Help with styling toolbar - by jock777 - 03-10-2023, 10:40 PM
RE: Help with styling toolbar - by marktech - 03-11-2023, 12:34 AM
RE: Help with styling toolbar - by jock777 - 03-11-2023, 02:25 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)