MouseMoveでカスタムイベントを発生させるカスタムコントロールのインスタンスがいくつかあります。 ここでは、コードです: のEventArgsクラス:「グローバル」WinFormsイベント
public class GroupMoveEventArgs
{
public enum Action { CalcOffset, Move };
Action action;
int mouse_x;
int mouse_y;
// setters missed here
public GroupMoveEventArgs(GroupMoveEventArgs.Action action,
int mouse_x, int mouse_y)
{
this.action = action;
this.mouse_x = mouse_x;
this.mouse_y = mouse_y;
}
}
Controlクラスは:
public delegate void GroupMoveEventHandler(object sender, GroupMoveEventArgs e);
public event GroupMoveEventHandler GroupMoveEvent;
protected virtual void figureMouseMove(object sender, MouseEventArgs e)
{
if (mouseDown)
{
if (inGroup)
{ // raising the event
if (this.GroupMoveEvent != null)
GroupMoveEvent(this, new GroupMoveEventArgs(
GroupMoveEventArgs.Action.Move,
Parent.PointToClient(Control.MousePosition).X,
Parent.PointToClient(Control.MousePosition).Y));
}
}
}
protected virtual void OnGroupMoveEvent(object sender, GroupMoveEventArgs e)
{
Console.WriteLine("Got mouse move event " + this.num_of_points);
if (inGroup)
{
if (e.EventAction == GroupMoveEventArgs.Action.Move)
{
Location = new Point(e.MouseX - offset.X, e.MouseY - offset.Y);
}
else
if (e.EventAction == GroupMoveEventArgs.Action.CalcOffset)
{
Control c = sender as Control;
Point pnt = Parent.PointToClient(Control.MousePosition);
Point tmp = c.Location;
offset.X = pnt.X - tmp.X;
offset.Y = pnt.Y - tmp.Y;
}
}
}
問題は、私がイベントを発生させるとき、私がすべてのコントロールを必要とするとき、送信者のみによって処理されていることですそれを処理する。どうやってやるの?
ありがとうございます、Ivan。
はすべて同じ形式のこれらのコントロールですか? –
はい、同じフォームにあります。 –
テキストボックスコントロールがこのイベントにどのように関心を持っているのか、見えにくいです。一般的に、フォームにはイベントハンドラがあり、それに関心のあるコントロールのメソッドを呼び出す必要があります。 –