make all private flyout methods protected virtual

This commit is contained in:
Pascal Schedel
2024-10-21 07:47:34 +02:00
parent 8a8407d86e
commit 8960dac951
2 changed files with 7 additions and 7 deletions

View File

@@ -76,18 +76,18 @@ public partial class FlyoutBase : UserControl
return true;
}
private void SetShowTitlePanel()
protected virtual void SetShowTitlePanel()
{
tableLayoutPanel_TitlePanel.Visible = !string.IsNullOrWhiteSpace(label_Title.Text);
}
private void Button_Accept_Click(object sender, System.EventArgs e)
protected virtual void Button_Accept_Click(object sender, System.EventArgs e)
{
if (ValidateOK())
Close(DialogResult.OK);
}
private void Button_Cancel_Click(object sender, System.EventArgs e)
protected virtual void Button_Cancel_Click(object sender, System.EventArgs e)
{
Close(DialogResult.Cancel);
}