1

Ok. I know wpf and am learning programming windows runtime via c# and xaml. Both use xaml that have the same namespace. Win rt is new and has the same namespace declared at the root element.

What are the similarities and differences.

sly_Chandan
  • 3,437
  • 12
  • 54
  • 83

1 Answers1

4

Here are some of the differences between WPF and WinRT:

  1. Different XML namespace declaration in XAML code (Instead of using a clr-namespace:/assembly= qualifier set for code-to-XAML namespace references, you use the using: qualifier. XAML namespaces no longer reference specific assemblies)

  2. Missing Expression SDK in WPF

  3. Missing Property-/DataTriggers in WPF

  4. Reduced BindingMode enum

  5. Missing Multi/Priority Binding in WPF

  6. Missing RoutedCommands in WPF

  7. Missing InputBindings in WPF

  8. DependencyProperty value calculation goes without coercion and validation

There are lot more differences. You can check this link to know further.

Utsav Dawn
  • 7,896
  • 2
  • 29
  • 44