Splitter.SplitterMoving 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当拆分器控件正处在移动过程中发生。 SplitterMoving 已被 SplitterMoving 取代,且仅为与早期版本兼容而提供。
public:
event System::Windows::Forms::SplitterEventHandler ^ SplitterMoving;
public event System.Windows.Forms.SplitterEventHandler SplitterMoving;
public event System.Windows.Forms.SplitterEventHandler? SplitterMoving;
member this.SplitterMoving : System.Windows.Forms.SplitterEventHandler
Public Custom Event SplitterMoving As SplitterEventHandler
事件类型
示例
下面的代码示例演示了此成员的用法。 在此示例中,事件处理程序报告事件的发生情况 SplitterMoving 。 此报表可帮助你了解事件发生的时间,并可以帮助你进行调试。 若要报告多个事件或频繁发生的事件,请考虑将 MessageBox.Show 替换为 Console.WriteLine 或将消息追加到多行 TextBox。
若要运行示例代码,请将其粘贴到包含名为 Splitter1
的 类型的Splitter实例的项目中。 然后,确保事件处理程序与 SplitterMoving 事件相关联。
private void Splitter1_SplitterMoving(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(), "SplitterMoving Event" );
}
Private Sub Splitter1_SplitterMoving(sender as Object, e as SplitterEventArgs) _
Handles Splitter1.SplitterMoving
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(),"SplitterMoving Event")
End Sub
注解
可以为 事件创建事件处理程序, SplitterMoving 以便在应用程序中执行重设大小验证。 例如,如果控件Splitter停靠到控件和ListView控件的TreeView边缘,则可以在 事件中SplitterMoved编写代码,以确定是否已超出 和 ListView 控件的最小和/或最大大小TreeView,并将控件的大小调整为最小或最大大小。
有关处理事件的详细信息,请参阅 处理和引发事件。