如何从Ribbon控件获取MS word屏幕位置?
我想要获取单词位置,以便可以在功能区控件的事件处理程序中相对于屏幕上的单词定位对话框
private void button1_Click(object sender, RibbonControlEventArgs e)
如何获取? 我的意思是没有位置或点属性可以告诉屏幕坐标。
I want to get the word position, so that I can position my dialogs relative to the word on the screen in the event handler in the ribbon control
private void button1_Click(object sender, RibbonControlEventArgs e)
How to get that? I mean there is no location or Point property which tells the screen coordinates.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也遇到过同样的问题。 不知道为什么,但 RibbonControl 类没有提供 Location 属性。
坐标可能位于 COM 对象内的某个位置,但我不是 Excel 专家。
还有其他人遇到过这个吗?
I've come across this same issue. Not sure why, but the RibbonControl class didn't provide a Location property.
It's possible that coordinates are housed somewhere within the COM objects, but I'm no Excel expert.
Anyone else come across this?