Delete function: set the default button to be "no"
This commit is contained in:
parent
187d5b1958
commit
aa22f7e1ef
@ -159,7 +159,7 @@ public partial class SectionTree : UserControl
|
||||
var numberChildren = await SectionProcessor.NumberChildren(this.db, selectedNode.Name);
|
||||
|
||||
// Ask the user, if he really wants to remove the section:
|
||||
if(MessageBox.Show(numberChildren > 0 ? $"Are you sure, you want to remove the section '{selectedNode.Text}', its {numberChildren} children and so on?" : $"Are you sure, you want to remove the section '{selectedNode.Text}'?", "Remove section", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
|
||||
if(MessageBox.Show(numberChildren > 0 ? $"Are you sure, you want to remove the section '{selectedNode.Text}', its {numberChildren} children and so on?" : $"Are you sure, you want to remove the section '{selectedNode.Text}'?", "Remove section", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.No)
|
||||
return;
|
||||
|
||||
// Remove the section from the database:
|
||||
|
Loading…
Reference in New Issue
Block a user