or
private RadDiagram CreateDiagram(Color backgroundColor, bool isEditingEnabled){ var diagram = new RadDiagram { IsBackgroundSurfaceVisible = false, Background = new SolidColorBrush(backgroundColor), IsPanEnabled = false, IsZoomEnabled = false, AllowCopy = false, AllowCut = false, AllowDelete = false, AllowDrop = false, ActiveTool = MouseTool.PointerTool, AllowPaste = false, IsDraggingEnabled = isEditingEnabled, IsResizingEnabled = isEditingEnabled, IsRotationEnabled = false, IsConnectorsManipulationEnabled = isEditingEnabled, IsManipulationAdornerVisible = isEditingEnabled, IsManipulationEnabled = isEditingEnabled, SelectionMode = isEditingEnabled ? SelectionMode.Single : SelectionMode.None, IsSnapToGridEnabled = false, IsSnapToItemsEnabled = false, }; diagram.Clear(); DiagramAnimations.SetIsZoomAnimationEnabled(diagram, false); ScrollViewer.SetHorizontalScrollBarVisibility(diagram, ScrollBarVisibility.Hidden); ScrollViewer.SetVerticalScrollBarVisibility(diagram, ScrollBarVisibility.Hidden); return diagram;}public class GraphSource : ObservableGraphSourceBase<Node, Link>
Hi I use the element (similar datepicker). When I change the date using the specific button the event SelectedDateChanged is raised. (correct) When I change the date writing directly in textbox the event SelectedDateChanged is not raised. (incorrect)
Do you know this problem? and Do you know the solution?
Thanks
