or

01.<telerik:VisualizationLayer.VirtualizationSource>02. <telerik:MapShapeDataVirtualizationSource>03. <telerik:MapShapeDataVirtualizationSource.Reader>04. <telerik:AsyncShapeFileReader x:Name="mapShapeDataReader">05. <telerik:AsyncReaderSourceCollection>06. <telerik:AsyncReaderSource Source="/MyProject;component/Resources/myshape1.shp" DataSource="/MyProject;component/Resources/myshape1.dbf" />07. <telerik:AsyncReaderSource Source="/MyProject;component/Resources/myshape2.shp" DataSource="/MyProject;component/Resources/myshape2.dbf" />08. </telerik:AsyncReaderSourceCollection>09. </telerik:AsyncShapeFileReader>10. </telerik:MapShapeDataVirtualizationSource.Reader>11. </telerik:MapShapeDataVirtualizationSource>12.</telerik:VisualizationLayer.VirtualizationSource>


MapPolyline polylinedata = new MapPolyline() polylinedata.SetValue(MapLayer.ZoomRangeProperty, new ZoomRange(2, 9)); polylinedata.SetValue(MapLayer.BaseZoomLevelProperty, 5); polylinedata.SetValue(MapLayer.MaxScaleProperty, 5); polyline.Style = this.Resources["selectedPolyLineStyle"] as Style; PolylineData polylinedata = new PolylineData(); polylinedata.SetValue(MapLayer.ZoomRangeProperty, new ZoomRange(2, 9)); polylinedata.SetValue(MapLayer.BaseZoomLevelProperty, 5); polylinedata.SetValue(MapLayer.MaxScaleProperty, 5); polyline.Style = this.Resources["selectedPolyLineStyle"] as Style;
public string Header { get; set; }public ObservableCollection<DiagramNodeProperty> DiagramNodeProperties { get; set; }<telerik:RadScheduleView.DragDropBehavior><localScheduler:ScheduleViewLevel1DragDropBehavior />
</telerik:RadScheduleView.DragDropBehavior>public class ScheduleViewLevel1DragDropBehavior : ScheduleViewDragDropBehavior { public override bool CanStartDrag(DragDropState state) { return true; } public override bool CanResize(DragDropState state) { return false; } public override bool CanDrop(DragDropState state) { //...
return true; } public override void Drop(DragDropState state) { //... }}