views:

24

answers:

1

Do you know if it would be possible to create a framework myself in C# that utilizes the good things that XAML offers, such as dependency properties and data binding?

Or would I have to create everything from scratch myself?

+1  A: 

You can use XAML for many (any?) object initialization needs. DataBinding and DPs are really a WPF feature, which of course you can re-use

Scott Weinstein