本文整理汇总了C#中System.Windows.Forms.Splitter.SplitterMoving事件的典型用法代码示例。如果您正苦于以下问题:C# Splitter.SplitterMoving事件的具体用法?C# Splitter.SplitterMoving怎么用?C# Splitter.SplitterMoving使用的例子?那么恭喜您, 这里精选的事件代码示例或许可以为您提供帮助。您也可以进一步了解该事件所在类System.Windows.Forms.Splitter
的用法示例。
在下文中一共展示了Splitter.SplitterMoving事件的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Splitter1_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" );
}
示例2: Main
//引入命名空间
using System;
using System.Drawing;
using System.Windows.Forms;
class SplitTwoProportional: Form
{
Panel panel2;
float fProportion = 0.5f;
public static void Main()
{
Application.Run(new SplitTwoProportional());
}
public SplitTwoProportional()
{
Text = "";
Panel panel1 = new Panel();
panel1.Parent = this;
panel1.Dock = DockStyle.Fill;
panel1.BackColor = Color.Red;
panel1.Resize += new EventHandler(PanelOnResize);
panel1.Paint += new PaintEventHandler(PanelOnPaint);
Splitter split = new Splitter();
split.Parent = this;
split.Dock = DockStyle.Left;
split.SplitterMoving += new SplitterEventHandler(SplitterOnMoving);
panel2 = new Panel();
panel2.Parent = this;
panel2.Dock = DockStyle.Left;
panel2.BackColor = Color.Lime;
panel2.Resize += new EventHandler(PanelOnResize);
panel2.Paint += new PaintEventHandler(PanelOnPaint);
OnResize(EventArgs.Empty);
}
protected override void OnResize(EventArgs ea)
{
base.OnResize(ea);
panel2.Width = (int) (fProportion * ClientSize.Width);
}
void SplitterOnMoving(object obj, SplitterEventArgs sea)
{
fProportion = (float) sea.SplitX / ClientSize.Width;
}
void PanelOnResize(object obj, EventArgs ea)
{
((Panel) obj).Invalidate();
}
void PanelOnPaint(object obj, PaintEventArgs pea)
{
Panel panel = (Panel) obj;
Graphics grfx = pea.Graphics;
grfx.DrawEllipse(Pens.Black, 0, 0,
panel.Width - 1, panel.Height - 1);
}
}