开发者

How can I tell where I have clicked on a Telerik Winform gridview?

开发者 https://www.devze.com 2023-03-24 22:48 出处:网络
I am clicking on the scrollbar on the Telerik gridview (sorry Telerik but your online help is not the best) and I want to know where the user has clicked so I can respond appropriately for example if

I am clicking on the scrollbar on the Telerik gridview (sorry Telerik but your online help is not the best) and I want to know where the user has clicked so I can respond appropriately for example if the user clicks on the scroll bar 开发者_运维知识库or headers then I wont look up a row value etc

thanks


It's in the help, we also have online support for these kind of stuff.

I am taking for example RadRichBox, but it works for any other control.

this.radRichTextBox1.MouseClick += radRichTextBox1_MouseClick;
private void radRichTextBox1_MouseClick(object sender, MouseEventArgs e)
        {
            RadMessageBox.Show(e.Location.ToString());
        }
0

精彩评论

暂无评论...
验证码 换一张
取 消