XamlLight.OnConnected(UIElement) 方法

定义

当 XamlLight 首次在屏幕上使用时,或者在之前断开连接后再次使用时,会自动调用此方法。

这样就有机会仅在需要时创建 CompositionLight 等资源。

当 XamlLight 不再用于点亮任何 UIElements 或 Brushs 时,将调用 OnDisconnected

protected:
 virtual void OnConnected(UIElement ^ newElement) = OnConnected;
void OnConnected(UIElement const& newElement);
protected virtual void OnConnected(UIElement newElement);
function onConnected(newElement)
Protected Overridable Sub OnConnected (newElement As UIElement)

参数

newElement
UIElement

指示灯连接到的 UIElement

适用于