diff --git a/Pilz.UI.Telerik/Dialogs/RadFlyoutBase.cs b/Pilz.UI.Telerik/Dialogs/RadFlyoutBase.cs index 4cffcb8..cfd4061 100644 --- a/Pilz.UI.Telerik/Dialogs/RadFlyoutBase.cs +++ b/Pilz.UI.Telerik/Dialogs/RadFlyoutBase.cs @@ -77,7 +77,7 @@ public partial class RadFlyoutBase : UserControl //} } - private void FlyoutDialogBase_ParentChanged(object? sender, EventArgs e) + protected virtual void FlyoutDialogBase_ParentChanged(object? sender, EventArgs e) { var frm = FindForm(); @@ -112,18 +112,18 @@ public partial class RadFlyoutBase : UserControl return true; } - private void SetShowTitlePanel() + protected virtual void SetShowTitlePanel() { tableLayoutPanel_TitlePanel.Visible = !string.IsNullOrWhiteSpace(radLabel_Title.Text) || radLabel_Title.SvgImage != null; } - private void RadButton_Confirm_Click(object sender, EventArgs e) + protected virtual void RadButton_Confirm_Click(object sender, EventArgs e) { if (ValidateOK()) Close(DialogResult.OK); } - private void RadButton_Cancel_Click(object sender, EventArgs e) + protected virtual void RadButton_Cancel_Click(object sender, EventArgs e) { Close(DialogResult.Cancel); } diff --git a/Pilz.UI/Dialogs/FlyoutBase.cs b/Pilz.UI/Dialogs/FlyoutBase.cs index 486eb5d..23d5a7a 100644 --- a/Pilz.UI/Dialogs/FlyoutBase.cs +++ b/Pilz.UI/Dialogs/FlyoutBase.cs @@ -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); }