Shape.ParentChanged 事件
發生在 Parent 屬性值變更時。
命名空間: Microsoft.VisualBasic.PowerPacks
組件: Microsoft.VisualBasic.PowerPacks.Vs (在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
語法
'宣告
<BrowsableAttribute(True)> _
Public Event ParentChanged As EventHandler
[BrowsableAttribute(true)]
public event EventHandler ParentChanged
[BrowsableAttribute(true)]
public:
event EventHandler^ ParentChanged {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member ParentChanged : IEvent<EventHandler,
EventArgs>
JScript 不支援事件。
備註
Parent屬性必須設定為執行個體ShapeContainer。
如需如何處理事件的詳細資訊,請參閱處理和引發事件。
範例
下列範例顯示如何回應ParentChanged事件處理常式中的事件。 此範例中您需要OvalShape名 OvalShape1 為表單上的控制項。
Private Sub OvalShape1_ParentChanged() Handles OvalShape1.ParentChanged
MsgBox("The shape has been moved to a new container.")
End Sub
private void ovalShape1_ParentChanged(object sender, System.EventArgs e)
{
MessageBox.Show("The shape has been moved to a new container.");
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。
請參閱
參考
Microsoft.VisualBasic.PowerPacks 命名空間
其他資源
如何:使用 LineShape 控制項繪製線條 (Visual Studio)