PropertyGrid and input events

  • Thread starter Thread starter Constantine G via DotNetMonster.com
  • Start date Start date
C

Constantine G via DotNetMonster.com

Hello.
Why in PropertyGrid dont fired my event handlers on mouse and keyboard events?

Is it bug or legal behavior?
 
Hello Constantine,

A property grid is a control which is used to enumerate and display the public properties of a control.
It cannot be used to fire events or call functions/methods of the control, as the latter are generally evaluated at runtime.

HTH

Mona[Grapecity]
 
Hello Mona.
May be I am incorrect demand.
PropertyGrid is control, it supports events (Click, MouseClick, KeyPress,
KeyDown, Enter, Leave), is it right?
Then why my handlers for PropertyGrid events Click, MouseClick, KeyDown did
not fired, but for Enter and Leave is fired?
Why PropertyGrid control can't invoke my handlers and then invoke its own
internal manipulating?
Hello Constantine,

A property grid is a control which is used to enumerate and display the public properties of a control.
It cannot be used to fire events or call functions/methods of the control, as the latter are generally evaluated at runtime.

HTH

Mona[Grapecity]
 
Back
Top