RadFlyoutBase: add title
This commit is contained in:
@@ -13,8 +13,8 @@ public partial class RadFlyoutBase : UserControl
|
||||
|
||||
protected bool ActionPanelVisible
|
||||
{
|
||||
get => tableLayoutPanel_ActionButtons.Visible;
|
||||
set => tableLayoutPanel_ActionButtons.Visible = value;
|
||||
get => tableLayoutPanel_ActionPanel.Visible;
|
||||
set => tableLayoutPanel_ActionPanel.Visible = value;
|
||||
}
|
||||
|
||||
protected bool CancelButtonVisible
|
||||
@@ -35,6 +35,18 @@ public partial class RadFlyoutBase : UserControl
|
||||
set => radButton_Confirm.Enabled = value;
|
||||
}
|
||||
|
||||
public string Title
|
||||
{
|
||||
get => radLabel_Title.Text;
|
||||
set => radLabel_Title.Text = value;
|
||||
}
|
||||
|
||||
public RadSvgImage TitleIcon
|
||||
{
|
||||
get => radLabel_Title.Icon;
|
||||
set => radLabel_Title.Icon = value;
|
||||
}
|
||||
|
||||
protected RadFlyoutBase()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
Reference in New Issue
Block a user