Splitter.SplitterMoved 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生於移動分隔器控制項時。 SplitterMoved 已經由 SplitterMoved 所取代,而提供它的目的只是為了要保有與舊版之間的相容性。
public:
event System::Windows::Forms::SplitterEventHandler ^ SplitterMoved;
public event System.Windows.Forms.SplitterEventHandler SplitterMoved;
public event System.Windows.Forms.SplitterEventHandler? SplitterMoved;
member this.SplitterMoved : System.Windows.Forms.SplitterEventHandler
Public Custom Event SplitterMoved As SplitterEventHandler
事件類型
範例
下列程式碼範例示範如何使用這個成員。 在此範例中,事件處理常式會報告事件的發生次數 SplitterMoved 。 此報告可協助您瞭解事件發生的時間,並可協助您進行偵錯。 若要報告多個事件或經常發生的事件,請考慮將 取代 MessageBox.Show 為 Console.WriteLine 或將訊息附加至多行 TextBox 。
若要執行範例程式碼,請將它貼入包含名為 Splitter1
之類型 Splitter 實例的專案。 然後,確定事件處理常式與 事件相關聯 SplitterMoved 。
private void Splitter1_SplitterMoved(Object sender, SplitterEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "X", e.X );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Y", e.Y );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "SplitX", e.SplitX );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "SplitY", e.SplitY );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "SplitterMoved Event" );
}
Private Sub Splitter1_SplitterMoved(sender as Object, e as SplitterEventArgs) _
Handles Splitter1.SplitterMoved
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "X", e.X)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "Y", e.Y)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "SplitX", e.SplitX)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "SplitY", e.SplitY)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"SplitterMoved Event")
End Sub
備註
您可以為事件建立事件處理常式, SplitterMoved 以在應用程式中執行調整大小驗證。 例如,如果 Splitter 控制項停駐在控制項和 ListView 控制項的 TreeView 邊緣,您可以在 事件中 SplitterMoved 撰寫程式碼,以判斷 和 ListView 控制項的 TreeView 最小和/或大小上限是否已超過,並將控制項的大小調整為其最小或大小上限。
如需處理事件的詳細資訊,請參閱 處理和引發事件。