Posted 15 Oct 2007 Link to this post
Posted 16 Oct 2007 Link to this post
Posted 17 Oct 2007 Link to this post
Posted 22 Oct 2007 Link to this post
Posted 16 Dec 2008 Link to this post
Posted 18 Dec 2008 Link to this post
Posted 31 Mar 2009 Link to this post
Posted 14 Oct 2009 Link to this post
Posted 19 Oct 2009 Link to this post
Posted 20 Oct 2009 Link to this post
public
class
MyRadGridView : RadGridView
{
bool
beginEdit;
mouseIsDown;
Point mouseDownPoint;
override
string
ThemeClassName
get
return
typeof
(RadGridView).FullName; }
set
{}
}
protected
void
OnMouseDown(MouseEventArgs e)
mouseDownPoint = e.Location;
mouseIsDown =
true
;
base
.OnMouseDown(e);
false
OnMouseUp(MouseEventArgs e)
if
(e.Location == mouseDownPoint && beginEdit)
BeginEdit();
.OnMouseUp(e);
beginEdit =
BeginEdit()
(mouseIsDown)
.BeginEdit();