Completed
Last Updated: 13 Oct 2015 11:24 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 06 Oct 2015 08:57
Category: Diagram, DiagramRibbonBar, DiagramToolBox
Type: Bug Report
1
FIX. RadDiagram - copy, paste, delete, cut options in the Settings pane should not be performed when the AllowCopy, AllowPaste, AllowDelete and AllowCut properties are set to false
To reproduce:

public Form1()
{
    InitializeComponent();

    RadDiagramShape shape = new RadDiagramShape();
    shape.Text = "Shape1";
    shape.AllowCopy = false;
    shape.AllowPaste = false;
    shape.AllowDelete = false;
    shape.AllowCut = false;
    shape.Position = new Telerik.Windows.Diagrams.Core.Point(50, 50);
    shape.BackColor = Color.Red;
    this.radDiagram1.AddShape(shape);
}

Workaround: Hide the first tab in the SettinsgPane as it is demonstrated in the following article: http://www.telerik.com/help/winforms/diagram-settings-pane.html
Attached Files:
0 comments