How to flipp the TrackBar ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm using the System.Windows.Forms.TrackBar, but I want the it to brawn
flipped 180vertical so the sharp tip of the tracker will point up instead of
down.

How can I do that?

I'll be thankful if you can post a code sample in here.
 
I'm using the System.Windows.Forms.TrackBar, but I want the it to brawn
flipped 180vertical so the sharp tip of the tracker will point up instead of
down.

How can I do that?

I'll be thankful if you can post a code sample in here.

This works for me:
this.trackBar1.TickStyle = System.Windows.Forms.TickStyle.TopLeft;

HTH,
Per

--

Per Erik Strandberg
..NET Architect - Optimization
Tomlab Optimization Inc.
http://tomopt.com/tomnet/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top