📄 iuielementactivationservice.cs
字号:
using System.Windows;
namespace Microsoft.Practices.CompositeUI.Windows
{
/// <summary>
/// Defines a service to deal with the <see cref="WorkItem"/> activation and deactivation based on its contained
/// <see cref="UIElement"/> state.
/// </summary>
public interface IUIElementActivationService
{
/// <summary>
/// Notifies that a <see cref="UIElement"/> has been added to the container.
/// </summary>
void UIElementAdded(UIElement uiElement);
/// <summary>
/// Notifies that a <see cref="UIElement"/> has been removed from the container.
/// </summary>
void UIElementRemoved(UIElement uiElement);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -