A kind of menu

  • Thread starter Thread starter Andreas
  • Start date Start date
A

Andreas

Hi!

I need a kind of menu in my application, but I don't know
what it's called. It's the type of menu you get if you
right click on your desktop, (at the top of the window),
and it have choices like Background, Screen Saver,
Apparance and so on. It lokks a bit like this:
_____________ ________________ _____________
| Background | Screen Saver | Apparance |
| '----------------'-------------|
| |

What is this type of menu called?
Where can I read on how to implement it??

best regards,
Andreas Lundgren
 
Andreas,
I think what you mean is a seperate form with a fixed size and place.
That you place standard in the left or right corner of your screen.
Cor
 
Andreas said:
I need a kind of menu in my application, but I don't know
what it's called. It's the type of menu you get if you
right click on your desktop, (at the top of the window),
and it have choices like Background, Screen Saver,
Apparance and so on. It lokks a bit like this:
_____________ ________________ _____________
| Background | Screen Saver | Apparance |
| '----------------'-------------|
| |

What is this type of menu called?

TabControl + TabPages.
Where can I read on how to implement it??

You will find the control in the toolbox.
 
No, not at all.
If you for example right click on you desktop, you'll get
the menu I was talking about. If you click
on "Background", your form gets one layout. If you click
on "Apparence" you'll get a second layout. This "peaces"
with the words "Background" on that you can click on, is a
partof this menu. I whant to infer such a menu in my
program.
 
Andreas said:
I need a kind of menu in my application, but I don't know
what it's called. It's the type of menu you get if you
right click on your desktop, (at the top of the window),
and it have choices like Background, Screen Saver,
Apparance and so on. It lokks a bit like this:
_____________ ________________ _____________
| Background | Screen Saver | Apparance |
| '----------------'-------------|
| |

What is this type of menu called?
Where can I read on how to implement it??

The TabControl should be in the toolbox.
 
Andreas,
I think that you mean, "contextmenu" that starts a new form with a tabpage
on it what Herfried told you?
Cor
 
Hi Cor, he's actually talking about the TabControl.

--
HTH,
-- Tom Spink, Über Geek

Please respond to the newsgroup,
so all can benefit

" System.Reflection Master "

==== Converting to 2002 ====
Remove inline declarations
 
Tom,
I saw, see my last answer, context menu, form, tabcontrol
(I said tabpage I see it now)
Cor
 
Back
Top