Version

Breaking Changes in 2014 Volume 2

Breaking Changes Summary

The following table summarizes the breaking changes of the Ultimate UI for WPF 2014 Volume 2 Release. Detailed explanations of the issues and the existing workarounds are provided after the summary table.

Legend:

Yes.png – Workaround available

No.png – No known workaround

Fix.png – No known workaround, fix planned

xamColorPicker

Issue Description Status

The SelectedColorChanged event is triggered when the user selects a color from the color palettes with mouse click.

Yes.png

xamDataPresenter

Issue Description Status

The UnboundField field type is now deprecated.

Yes.png

xamColorPicker

SelectedColorChanged Event Change

Until Ultimate UI for WPF 2014 Volume 2 Release, the xamColorPicker SelectedColorChanged event was triggered every time a user hovers over a color in the xamColorPicker palettes.

Now the SelectedColorChanged event is triggered only when the user selects a color with mouse click.

Old Behavior New Behavior

SelectedColorChanged event is fired on hovering over a color in the xamColorPicker palettes

SelectedColorChanged event is fired on color selection with mouse click in the xamColorPicker palettes

xamDataPresenter

Deprecating the UnboundField Type

The UnboundField field type is now deprecated and you should refrain from using it. Instead you should use the new editor specific field types (or the common Field type) and set the new BindingType property to Unbound.

Old Field Definition New Field Definition

<UnboundField />

<Field BindingType="Unbound" />

Related Topics: