我开发了类似智能感知的对话框,它应出现在特定的按键上。 (我的项目是VS-Package,我的对话框将作为命令打开) 问题是,我不知道如何在当前光标位置显示我的对话框。有简单的方法来处理当前选择的文本,例如与
TextSelection objSel = (EnvDTE.TextSelection)(dte.ActiveDocument.Selection);
但我无法在这里获得任何绝对的位置。
我经常搜索,但没找到任何可以帮助我的东西。 也许有人可以给我一个提示或 - 甚至更好 - 代码示例来解决我的问题。我非常感谢你的帮助!
答案 0 :(得分:6)
我在当前项目中做的完全相同,所以这里是相关的代码复制和粘贴。我使用以下答案在其他位置生成activeWpfTextView
对象:Find an IVsTextView or IWpfTextView for a given ProjectItem, in VS 2010 RC extension。
private IVsWindowFrame GetWindow()
{
// parent is the Microsoft.VisualStudio.Shell.ToolWindowPane
// containing this UserControl given in the constructor.
var window = (ToolWindowPane)parent.GetIVsWindowPane();
return (IVsWindowFrame)window.Frame;
}
private void DoShow()
{
var window = GetWindow();
var textViewOrigin = (activeWpfTextView as UIElement).PointToScreen(new Point(0, 0));
var caretPos = activeWpfTextView.Caret.Position.BufferPosition;
var charBounds = activeWpfTextView
.GetTextViewLineContainingBufferPosition(caretPos)
.GetCharacterBounds(caretPos);
double textBottom = charBounds.Bottom;
double textX = charBounds.Right;
Guid guid = default(Guid);
double newLeft = textViewOrigin.X + textX - activeWpfTextView.ViewportLeft;
double newTop = textViewOrigin.Y + textBottom - activeWpfTextView.ViewportTop;
window.SetFramePos(VSSETFRAMEPOS.SFP_fMove, ref guid,
(int)newLeft, (int)newTop,
0, 0);
window.Show();
resultsList.Focus();
}