MouseEventArgs.CLicks in WPF
WPF
3
Posts
2
Posters
1
Views
1
Watching
-
Hello All, Please how do i emplment the WPF equivalent of
public FooClickArgs(NFoo pos, NFoo2 part, MouseEventArgs e)
: base(e.Button, e.Clicks, e.X, e.Y, e.Delta)
{
Position = pos;
PositionPart = part;
}In WPF Canvas. Thank you.
-
Hello All, Please how do i emplment the WPF equivalent of
public FooClickArgs(NFoo pos, NFoo2 part, MouseEventArgs e)
: base(e.Button, e.Clicks, e.X, e.Y, e.Delta)
{
Position = pos;
PositionPart = part;
}In WPF Canvas. Thank you.
-
Canvases (say it really fast a few times) don't respond to events; because they cannot have focus and so forth.
"(I) am amazed to see myself here rather than there ... now rather than then". ― Blaise Pascal
Thank you for our reply.