Is this possible in .NET?

Is it possible to make this kind of toolbar in .NET. If so how?

Matt

[222 byte] By [MateuszRajca] at [2007-12-23]
# 1
Yup. You can make something exactly like that just using a Windows Form. Just drag a toolstrip onto it, size it how you want, and wa la! If you want cool looking graphics, then you will have to look into skinning a windows form.
DaveS.Anderson at 2007-8-31 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 2
I just get a standard toolbar when I drag the toolstrip from the toolbox to the form? Here is what I want. I have a button called Edit mode. And when the user clicks the button a toolbar like that appears.

Matt

MateuszRajca at 2007-8-31 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 3
What I meant is the ENTIRE toolbar will be a Windows Form. Example:

http://img153.imageshack.us/img153/7591/untitledyj6.jpg

DaveS.Anderson at 2007-8-31 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 4

Now how do I control the editor control from another form?

Matt

MateuszRajca at 2007-8-31 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 5
You can access events in one form from another. Example:

Form1 is the main form.
Form2 is your toolbar form.

// IN FORM 2
UserClicks Edit button -> Form1.EditFunction();

// In FORM1
EditFunction() fires.

I would get more in depth, but this goes into a whole other topic discussion, and I have to leave for the night.

Hopefully someone else can pick up where I left off.

Good luck pal.

DaveS.Anderson at 2007-8-31 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 6

OK but I cant click on anything in the background. When the form with the toolstrip is shown, I cant click on anything in the background (Form1) (like any of the buttons or anything)

Matt

MateuszRajca at 2007-8-31 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 7
Make sure that the toolstrip forms border is not set to FixedDialog and that you are using the Show() method to call it and not ShowDialog();
DaveS.Anderson at 2007-8-31 > top of Msdn Tech,Windows Forms,Windows Forms General...