public void HideContext() { if (!_isShowed) { return; } _isShowed = false; if (_currentGroup) { _currentGroup.HideContext(); _currentGroup = null; } SetContextParameters(0f, false); Hided?.Invoke(this); }
private void Hide_Storyboard_Completed(object sender, object e) { Visibility = Visibility.Collapsed; Hided?.Invoke(this, EventArgs.Empty); }
public void Hide() { Hided?.Invoke(); }