vote up 0 vote down star

I want to know how can I build UIs like skype using standard .Net/C#. Is it possible at all?

Thanks

flag

5 Answers

vote up 7 vote down check

You can use Windows Presentation Foundation to build more stylish GUIs than Windows Forms. It's pretty difficult to move from Forms to WPF. You usually need a good design tool, like Expression Blend.

link|flag
Thanks Chris. I will start looking at this WPF – unlimit Jul 28 at 18:04
vote up 1 vote down

AFAIK skype was built using Qt4, it's rather easy to build custom gui widgets, check C++ GUI Programming with Qt4, 2nd Edition and this tutorial.

P.S. check this to see how to build qt4 on windows using MSVC 2008.

link|flag
He only wanted to build an interface "LIKE" Skype, switching from C# to C++ (.NET to Qt4) isn't going to give him interfaces like Skype, there is still a lot of work left afterwards... and now he has two new technologies to use! I'll not downvote, but it's a poor answer! – Ray Hayes Jul 28 at 6:36
I completely blocked out the .net part, not enough coffee yet. – OneOfOne Jul 28 at 7:16
vote up 0 vote down

It might be possible to build such an UI using Windows Forms, but only with a lot of custom control code or a really good component suite. But as Chris said, WPF should be the tool of your choice when you want to use .NET.

Qt4 is a really powerful C++ framework, also powering apps like Google Earth. The Qt SDK, inclduing everything you need to get started (Compiler, IDE, documentation), can be obtained here. It's licensed (among others) under the LGPL.

link|flag
vote up 0 vote down

Windows Presentation Foundation will give you the most flexibility, but it can be hard to use. An alternative to this is Sliverlight - Version 3 is going to be capable of being used outside of the browser (similar to Adobe Air), and in some ways provides an easier development experience. You might want to consider using some third party controls to give you access to nice functionality that you wouldn't get out of box.

link|flag
vote up 0 vote down

To my acknowledge Skype is build with Delphi an a set of third party tools, so it for sure can be done without WPF. Take a look at the components from DevExpress or TMS.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.