本文整理汇总了C#中System.Windows.Forms.SplitContainer.OnSplitterMoved方法的典型用法代码示例。如果您正苦于以下问题:C# SplitContainer.OnSplitterMoved方法的具体用法?C# SplitContainer.OnSplitterMoved怎么用?C# SplitContainer.OnSplitterMoved使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.SplitContainer
的用法示例。
在下文中一共展示了SplitContainer.OnSplitterMoved方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Form1
//引入命名空间
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.SplitContainer splitContainer1;
// Create an empty Windows form.
public Form1()
{
InitializeComponent();
}
private void InitializeComponent()
{
splitContainer1 = new System.Windows.Forms.SplitContainer();
splitContainer1.SuspendLayout();
SuspendLayout();
// Place a basic SplitContainer control onto Form1.
splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
splitContainer1.Location = new System.Drawing.Point(0, 0);
splitContainer1.Name = "splitContainer1";
splitContainer1.Size = new System.Drawing.Size(292, 273);
splitContainer1.SplitterDistance = 52;
splitContainer1.SplitterWidth = 6;
splitContainer1.TabIndex = 0;
splitContainer1.Text = "splitContainer1";
// Add the event handler for the SplitterMoved event.
splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(splitContainer1_SplitterMoved);
// Add the event handler for the SplitterMoving event.
splitContainer1.SplitterMoving += new System.Windows.Forms.SplitterCancelEventHandler(splitContainer1_SplitterMoving);
// This is the left panel of the vertical SplitContainer control.
splitContainer1.Panel1.Name = "splitterPanel1";
// This is the right panel of the vertical SplitContainer control.
splitContainer1.Panel2.Name = "splitterPanel2";
// Lay out the basic properties of the form.
ClientSize = new System.Drawing.Size(292, 273);
Controls.Add(splitContainer1);
Name = "Form1";
Text = "Form1";
splitContainer1.ResumeLayout(false);
ResumeLayout(false);
}
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void splitContainer1_SplitterMoved(System.Object sender, System.Windows.Forms.SplitterEventArgs e)
{
// Define what happens when the splitter is no longer moving.
Cursor.Current=System.Windows.Forms.Cursors.Default;
}
private void splitContainer1_SplitterMoving(System.Object sender, System.Windows.Forms.SplitterCancelEventArgs e)
{
// Define what happens while the splitter is moving.
Cursor.Current=System.Windows.Forms.Cursors.NoMoveVert;
}
}