Skip to content

Commit d9254a7

Browse files
Merge pull request telerik#2867 from telerik/stennlyy/d-document-breaking-changes
Document the breaking changes.
2 parents 68929c8 + f24410a commit d9254a7

File tree

14 files changed

+103
-238
lines changed

14 files changed

+103
-238
lines changed

_silverlight.yml

+3
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@ controls/radpasswordbox,
118118
controls/radaiprompt,
119119
controls/radautosuggestbox,
120120
controls/radlistbox/how-to,
121+
controls/radprogressbar/breaking-changes.md,
122+
controls/radnumericupdown/breaking-changes.md,
123+
controls/radlistbox/breaking-changes.md,
121124
controls/radlistbox/features/virtualizingwrappanel.md,
122125
integration/visual-studio-templates.md,
123126
common-information/consuming-data/wcf-service.md,
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,17 @@
11
---
2-
title: Changes and Backward Compatibility
3-
page_title: Changes and Backward Compatibility
4-
description: Check our "Changes and Backward Compatibility" documentation article for the DragDropManager {{ site.framework_name }} control.
2+
title: Breaking Changes
3+
page_title: Breaking Changes
4+
description: Check our "Breaking Changes" documentation article for the DragDropManager WPF control.
55
slug: dragdropmanager-changes-and-backward-compatibility
6-
tags: changes,and,backward,compatibility
6+
tags: changes, compatibility, breaking changes
77
published: True
88
position: 1
99
---
1010

11-
# Changes and Backward Compatibility
11+
# Breaking Changes
1212

13-
This article describes the release history of the control.
13+
This article describes the breaking changes history of the DragDropManager control.
1414

15-
## Latest Release Notes
15+
To see the fixes and features included in our latest official release please refer to our [Release History](http://www.telerik.com/support/whats-new/wpf/release-history).
1616

17-
You can check the latest Release Notes {% if site.site_name == 'Silverlight' %}[ here.](http://www.telerik.com/products/silverlight/whats-new/release_notes.aspx){% endif %}{% if site.site_name == 'WPF' %}[ here.](http://www.telerik.com/products/wpf/whats-new/release-history.aspx){% endif %}
18-
19-
## Telerik DragDropManager Q2 2011
20-
21-
Introduced new drag drop framework with API similar to .NET build-in with the extended drag abilities:
22-
23-
* Out of the box drag between applications/windows (WPF)
24-
25-
* Rich event model for controlling the drag process
26-
27-
* Improved support in specific scenarios – Popups, Docking, etc.
17+
* The `DragDropManager.TouchDragTrigger` attached property and the `TouchDragTrigger` enumeration are omitted. Use the `DragDropManager.DragStartTrigger`attached property and the `TouchDragStartTrigger` enumeration instead.

controls/raddocking/changes-and-backwards-compatibility/changes.md

-155
This file was deleted.

controls/raddocking/changes.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: Breaking Changes
3+
page_title: Breaking Changes
4+
description: Check our "Breaking Changes" documentation article for the RadDocking WPF control.
5+
slug: raddocking-changes
6+
tags: changes, breaking changes
7+
published: True
8+
position: 3
9+
---
10+
11+
# Breaking Changes
12+
13+
This article describes the breaking changes history of the RadDocking control.
14+
15+
To see the fixes and features included in our latest official release please refer to our [Release History](http://www.telerik.com/support/whats-new/wpf/release-history).
16+
17+
* The `ElementSaving` and `ElementCleaning` events are omitted. Use the `ElementLayoutSaving` and `ElementLayoutCleaning` events instead.
18+
* The `Telerik.Windows.Controls.PaneHeaderAutomationPeer` class is removed. Use the same class's name but from the `Telerik.Windows.Automation.Peers` namespace.
19+
* The `PreviewResizeStart` event of the RadGridResizer class is omitted as it is not used internally.

controls/raddocking/events/overview.md

-4
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,10 @@ This help article covers the specific events exposed by the __RadDocking__ contr
6565

6666
* __ElementLoaded__: Raised after a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is loaded. The passed event argument is of type __LayoutSerializationEventArgs__.
6767

68-
* __ElementSaving__: Raised when a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is about to be saved. The passed event argument is of type __LayoutSerializationEventArgs__.
69-
7068
* __ElementLayoutSaving__ (introduced with R2 2016 of UI for {% if site.site_name == 'WPF' %}WPF{% endif %}{% if site.site_name == 'Silverlight' %}Silverlight{% endif %}) - Raised when a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) starts saving. The passed event argument is of type __LayoutSerializationSavingEventArgs__. Element layout saving can be canceled by setting the __Cancel__ property from the event arguments.
7169

7270
* __ElementSaved__: Raised after a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is saved. The passed event argument is of type __LayoutSerializationEventArgs__.
7371

74-
* __ElementCleaning__: Raised when a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is about to be cleaned. The passed event argument is of type __LayoutSerializationEventArgs__.
75-
7672
* __ElementLayoutCleaning__ (introduced with R2 2016 of UI for {% if site.site_name == 'WPF' %}WPF{% else %}Silverlight{% endif %}) - Raised when a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) starts cleaning up. The passed event argument is of type __LayoutSerializationCleaningEventArgs__. Element layout cleaning can be canceled by setting the __Cancel__ property from the event arguments.
7773

7874
* __ElementCleaned__: Raised after a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is cleaned. The passed event argument is of type __LayoutSerializationEventArgs__.

controls/raddocking/features/save-load-layout/overview.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -355,16 +355,12 @@ The __RadDocking__ API offers you six events for managing the save/load layout b
355355

356356
* __ElementLoaded__- raised after a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is loaded. The type of the passed event arguments is __LayoutSerializationEventArgs__.
357357

358-
* __ElementSaving__ - raised when a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is about to be saved. The type of the passed event arguments is __LayoutSerializationEventArgs__.
359-
360358
* __ElementLayoutSaving__ (introduced with R2 2016 of UI for {% if site.site_name == 'WPF' %}WPF{% endif %}{% if site.site_name == 'Silverlight' %}Silverlight{% endif %}) - raised when a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is about to be saved. The type of the passed event arguments is __LayoutSerializationSavingEventArgs__.
361359

362360
* __LayoutSerializationSavingEventArgs__ - provides access to the __AffectedElement__, __AffectedElementSerializationTag__, __ElementProperties__ properties and the __Cancel__ property that determines whether the AffectedElement will be serialized.
363361

364362
* __ElementSaved__ - raised after a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is saved. The type of the passed event arguments is __LayoutSerializationEventArgs__.
365363

366-
* __ElementCleaning__- raised when a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is about to be cleaned. The type of the passed event arguments is __LayoutSerializationEventArgs__.
367-
368364
* __ElementLayoutCleaning__ (introduced with R2 2016 of UI for {% if site.site_name == 'WPF' %}WPF{% endif %}{% if site.site_name == 'Silverlight' %}Silverlight{% endif %}) - raised when a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is about to be cleaned. The type of the passed event arguments is __LayoutSerializationCleaningEventArgs__.
369365

370366
* __LayoutSerializationCleaningEventArgs__ - provides access to the __AffectedElement__, __AffectedElementSerializationTag__ properties and the __Cancel__ property that determines whether the AffectedElement will be removed from the layout.
@@ -373,7 +369,7 @@ The __RadDocking__ API offers you six events for managing the save/load layout b
373369

374370
* __CustomElementLoading__- raised when a custom docking element (that derives from __RadPane__, __RadPaneGroup__ or __RadSplitContainer__) is about to be loaded. The type of the passed event arguments is __LayoutSerializationCustomLoadingEventArgs__.
375371

376-
The type of the event arguments for the __ElementLoaded__, __ElementSaving__, __ElementSaved__, __ElementCleaning__ and __ElementCleaned__ is: __Telerik.Windows.Controls.LayoutSerializationEventArgs.__ Via both of the event arguments you get access to the following properties:
372+
The type of the event arguments for the __ElementLoaded__, __ElementSaved__, and __ElementCleaned__ is: __Telerik.Windows.Controls.LayoutSerializationEventArgs.__ Via both of the event arguments you get access to the following properties:
377373

378374
* __AffectedElement__- this is the currently loaded\saved pane.
379375

controls/radexpander/changes-and-backwards-compatibility/changes.md

-54
This file was deleted.

controls/radexpander/changes.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Breaking Changes
3+
page_title: Breaking Changes
4+
description: Check our "Breaking" documentation article for the RadExpander WPF control.
5+
slug: radexpander-changes
6+
tags: changes, breaking changes
7+
published: True
8+
position: 3
9+
---
10+
11+
# Breaking Changes
12+
13+
This article describes the breaking changes history of the RadExpander control.
14+
15+
To see the fixes and features included in our latest official release please refer to our [Release History](http://www.telerik.com/support/whats-new/wpf/release-history).
16+
17+
* The `Telerik.Windows.Controls.RadExpanderAutomationPeer` is omitted. Use `Telerik.Windows.Automation.Peers.RadExpanderAutomationPeer` instead.

controls/radexpander/expander-getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Check our "Getting Started" documentation article for the
55
slug: expander-getting-started
66
tags: getting,started
77
published: True
8-
position: 2
8+
position: 1
99
---
1010

1111
# Getting Started with {{ site.framework_name }} Expander

controls/radexpander/header-button-style.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: This article will show you how to customize the header button style
55
slug: radexpander-features-header-button-style
66
tags: button style, header button, expander, expander button
77
published: True
8-
position: 3
8+
position: 2
99
---
1010

1111
# HeaderButtonStyle
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Breaking Changes
3+
page_title: Breaking Changes
4+
description: Check our "Breaking Changes" documentation article for the RadListBox control.
5+
slug: progressbar-breaking-changes
6+
tags: breaking, changes
7+
published: True
8+
position: 8
9+
---
10+
11+
# Breaking Changes
12+
13+
This article shows the breaking changes history of the RadListBox control.
14+
15+
To see the fixes and features included in our latest official release please refer to our [Release History](http://www.telerik.com/support/whats-new/wpf/release-history).
16+
17+
* The `OnIsReadOnlyChanged` method is omitted. It is not used internally by the RadListBox control.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Breaking Changes
3+
page_title: Breaking Changes
4+
description: Check our "Breaking Changes" documentation article for the RadNumericUpDown control.
5+
slug: progressbar-breaking-changes
6+
tags: breaking, changes
7+
published: True
8+
position: 4
9+
---
10+
11+
# Breaking Changes
12+
13+
This article shows the breaking changes history of the RadNumericUpDown control.
14+
15+
To see the fixes and features included in our latest official release please refer to our [Release History](http://www.telerik.com/support/whats-new/wpf/release-history).
16+
17+
* The `Telerik.Windows.Controls.Automation.Peers.RadRangeBaseAutomationPeer` is omitted. Use `Telerik.Windows.Automation.Peers.RadRangeBaseAutomationPeer` instead.

0 commit comments

Comments
 (0)