Does anyone know any commercial C++/CLI GUI library with source code?

  • Thread starter Thread starter Philip
  • Start date Start date
P

Philip

Does anyone know any commercial C++/CLI GUI library with source code?
Thank you very much.
 
Does anyone know any commercial C++/CLI GUI library with source code?
Thank you very much.

What do you mean by gui library?
I'd consider the Windows forms namespace and forms designer a fairly
complete package.

Everything in the forms namespace is accisible to you, so if you need other
stuff, you'd need to give us some more information.
 
Thank you very much for your feedback.
I am a Visual C++ developer and new to C++/CLI.
I was thinking to use a GUI library to draw nice toolbar,
nice menu, nice ribbon control, Microsoft Office 2007-style look,
and skinned interface. I need the source code to learn how
they programmed advanced C++/CLI.
 
Bruno van Dooren said:
What do you mean by gui library?
I'd consider the Windows forms namespace and forms designer a fairly
complete package.

But not "with source code".
 
Thank you very much for your feedback.
I am a Visual C++ developer and new to C++/CLI.
I was thinking to use a GUI library to draw nice toolbar,
nice menu, nice ribbon control, Microsoft Office 2007-style look,
and skinned interface. I need the source code to learn how
they programmed advanced C++/CLI.

Well, you could go to www.codeproject.com and search through the articles
and tutorials.
 
Does anyone know any commercial C++/CLI GUI library with source code?
Thank you very much.

Prof-UIS for MFC is one more example of the library with complete
source code:

http://www.prof-uis.com/

They provide both a commercial library and a freeware one (Prof-UIS
Freeware). The later is also provided with complete source code but
some features are cut out (e.g., their grids). But in any case, you
can download the source code right away:

http://www.prof-uis.com/downloads-mfc.aspx (search for Prof-UIS
Freeware v.2.70).

Best regards,
Alain
 
Philip said:
I just found BCGControlBar Library .NET Edition with source code written in
C++/CLI, but this is a Russian company.

I really doubt their C++/CLI source code.
Can I trust BCGSoft?

Anyone has background knowledge of this company?
Thank you very much.

http://www.bcgsoft.com/bcgcontrolbardotnet.htm
Google Groups is your friend.
A quick look reveals discussion articles going back to 1999, so they've been
around a while. Read the articles for yourself to get an idea of what others
think...
 
Hi Philip,

It depends on what you are going to do. If you are writing a .NET program
then this library will not help you much, but if you are using MFC or
writing native you'll find a libray like this (BCGSoft) and the other one
suggested (www.codejock.com) to be quite handy. Both companies have been
around for a while and seem to be quite stable. I've been using XTreme
Tookit for several years. CodeJock has an OCX version of many of their
interface tools that can be used with .NET depending on what you are doing.
If you are doing .NET form stuff you may want to look at www.telerik.com.
I've recently been evaluating that library for a new project we're working
on that will be all .NET based.

Tom
 
Back
Top