Winform controls vs. WPF controls.

B

Bill Gower

Will Net 2.0 Winform controls work in WPF apps or does a control have to be
specifically designed for WPF?

Bill
 
R

Radek Cerny

There is the option using interop, but WPF is a whole new different world,
so the basic answer is no.
 
H

Herfried K. Wagner [MVP]

Bill Gower said:
Will Net 2.0 Winform controls work in WPF apps or does a control have to
be specifically designed for WPF?

Windows Forms controls are different from WPF controls. Windows Forms
controls are bitmap-based, whereas WPF controls are drawn in a vector-based
way. Thus WPF provides some features like rotation, shearing, etc. of
controls which Windows Forms cotnrols do not support. Nevertheless, there
are ways to mix Windows Forms and WPF, but the result may be disappointing.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top