1
This commit is contained in:
@@ -45,8 +45,8 @@ namespace BITKit.UX
|
||||
}
|
||||
public abstract class UXPanelImplement:IUXPanel
|
||||
{
|
||||
protected virtual IUXPanel _iuxPanelImplementation1 { get; }
|
||||
protected abstract IUXPanel _iuxPanelImplementation { get; }
|
||||
protected abstract IUXPanel service { get; }
|
||||
private IUXPanel _iuxPanelImplementation => service;
|
||||
public bool IsAnimate => _iuxPanelImplementation.IsAnimate;
|
||||
|
||||
public bool IsValid => _iuxPanelImplementation.IsValid;
|
||||
@@ -69,14 +69,14 @@ namespace BITKit.UX
|
||||
|
||||
public event Action OnEntry
|
||||
{
|
||||
add => _iuxPanelImplementation1.OnEntry += value;
|
||||
remove => _iuxPanelImplementation1.OnEntry -= value;
|
||||
add => _iuxPanelImplementation.OnEntry += value;
|
||||
remove => _iuxPanelImplementation.OnEntry -= value;
|
||||
}
|
||||
|
||||
public event Action OnExit
|
||||
{
|
||||
add => _iuxPanelImplementation1.OnExit += value;
|
||||
remove => _iuxPanelImplementation1.OnExit -= value;
|
||||
add => _iuxPanelImplementation.OnExit += value;
|
||||
remove => _iuxPanelImplementation.OnExit -= value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user