Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic How to delete Component in a CompositeNode use by Delete key press. (Read 309 times)
GrandSon
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 10
Joined: Nov 26th, 2023
How to delete Component in a CompositeNode use by Delete key press.
May 20th, 2024 at 8:24am
Print Post  
I want remove selected* Component(extends ComponentBase) in a CompositeNode.
(*MyClass has IsSelected original property)

I implemements DiagramView.MouseDown event handler like below:
Code (C++)
Select All
private void DiagramView_KeyDown(object? sender, KeyEventArgs e)
{
    if(!Keys.Delete.Equals(e.KeyData))
        return;

    foreach(var child in Children)
    {
        if(child.IsSelected)
            Delete(child);
    }
} 



It is worked, but parent CompositeNode is deleted too.

I need extends DiagramView and override ProcessCmdKey to achive this?
  
Back to top
 
IP Logged
 
Slavcho
YaBB Moderator
*****
Offline


tech.support

Posts: 3228
Joined: Oct 19th, 2005
Re: How to delete Component in a CompositeNode use by Delete key press.
Reply #1 - May 20th, 2024 at 8:54am
Print Post  
If you don't need to delete diagram items using Del key at all, set DiagramView.DelKeyAction = None. If you need to prevent it selectively, handle the NodeDeleting validation event and set args.Cancel. E.g. args.Cancel = args.Node is CompositeNode && node contains selected components;

Regards,
Slavcho
Mindfusion
  
Back to top
 
IP Logged
 
GrandSon
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 10
Joined: Nov 26th, 2023
Re: How to delete Component in a CompositeNode use by Delete key press.
Reply #2 - May 21st, 2024 at 5:11am
Print Post  
Thank you so much.
I got it.

I'll use NodeDeleted event.
  
Back to top
 
IP Logged
 
Slavcho
YaBB Moderator
*****
Offline


tech.support

Posts: 3228
Joined: Oct 19th, 2005
Re: How to delete Component in a CompositeNode use by Delete key press.
Reply #3 - May 21st, 2024 at 6:50am
Print Post  
Quote:
I'll use NodeDeleted event


you mean NodeDeleting Wink
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint