You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This article describes the release history of the control.
13
+
This article describes the breaking changes history of the DragDropManager control.
14
14
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).
16
16
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.
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.
Copy file name to clipboardexpand all lines: controls/raddocking/events/overview.md
-4
Original file line number
Diff line number
Diff line change
@@ -65,14 +65,10 @@ This help article covers the specific events exposed by the __RadDocking__ contr
65
65
66
66
*__ElementLoaded__: Raised after a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is loaded. The passed event argument is of type __LayoutSerializationEventArgs__.
67
67
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
-
70
68
*__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.
71
69
72
70
*__ElementSaved__: Raised after a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is saved. The passed event argument is of type __LayoutSerializationEventArgs__.
73
71
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
-
76
72
*__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.
77
73
78
74
*__ElementCleaned__: Raised after a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is cleaned. The passed event argument is of type __LayoutSerializationEventArgs__.
Copy file name to clipboardexpand all lines: controls/raddocking/features/save-load-layout/overview.md
+1-5
Original file line number
Diff line number
Diff line change
@@ -355,16 +355,12 @@ The __RadDocking__ API offers you six events for managing the save/load layout b
355
355
356
356
*__ElementLoaded__- raised after a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is loaded. The type of the passed event arguments is __LayoutSerializationEventArgs__.
357
357
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
-
360
358
*__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__.
361
359
362
360
* __LayoutSerializationSavingEventArgs__ - provides access to the __AffectedElement__, __AffectedElementSerializationTag__, __ElementProperties__ properties and the __Cancel__ property that determines whether the AffectedElement will be serialized.
363
361
364
362
*__ElementSaved__ - raised after a docking element (__Pane__, __PaneGroup__ or __SplitContainer__) is saved. The type of the passed event arguments is __LayoutSerializationEventArgs__.
365
363
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
-
368
364
*__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__.
369
365
370
366
* __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
373
369
374
370
*__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__.
375
371
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:
377
373
378
374
*__AffectedElement__- this is the currently loaded\saved pane.
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.
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.
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