⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iuielementactivationservice.cs

📁 wpf和cab的结合使用源码(转载)
💻 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 + -