Yippie-Ki-Yay
Yippie-Ki-Yay

Reputation: 22814

C# - gui question

Does someone know if there are any libraries or components written in C# (or C++) which allow to create gui similiar to the one used in the Adobe products (Photoshop, After Effects, etc)?

Thank you.

Upvotes: 2

Views: 401

Answers (3)

Jeremy Thompson
Jeremy Thompson

Reputation: 65624

Adobe products are written in CodeWarrior - a Motorola product. Your not going to get the same look with .Net buttons. My advice is to check out CodeJock or DevComponents and make a custom theme, here you go: http://www.codejock.com/products/skinframework/tour_4.asp?platform=

*Edit I cant find a Adobe msstyle and I'm sure your not the only one who would like an Adobe skin, hence you could probably make some pocket money selling the skin if you make it...

Upvotes: 0

Wim Coenen
Wim Coenen

Reputation: 66733

If you're looking for a way to build slick, themeable GUIs, take a look at WPF.

Upvotes: 4

ChrisLively
ChrisLively

Reputation: 88074

Those are basically non-modal forms with a z order that places them on top. To achieve the specific look, just adjust your fonts etc.

Of course, the complication is going to come in when syncing the selection in the toolbar with the main form.

Upvotes: 0

Related Questions