vsto C#でExcelアプリケーションオブジェクトにフォーカスを設定する方法私はそれを探していましたが、成功しませんでした
質問する
2339 次
2 に答える
1
このコードを試してください
Process[] processes = Process.GetProcessesByName("excel");
foreach (Process p in processes)
{
if (p.MainWindowTitle.Contains(fileName.Substring(fileName.LastIndexOf("/") + 1)))
{
SetForegroundWindow(p.MainWindowHandle);
}
}
于 2012-07-26T11:21:22.107 に答える
0
私のVSTOアプリケーションの解決策は次のとおりです。
[DllImport("user32.dll", SetLastError = true)]
public static extern bool BringWindowToTop(IntPtr hWnd);
/// <summary>
/// Gets the main excel window.
/// </summary>
/// <returns>An ArbitraryWindow that represents the main excel window.</returns>
public static ArbitraryWindow GetMainExcelWindow()
{
var excelHwnd_IntPtr = new IntPtr(Globals.ThisAddIn.Application.Hwnd);
var excelWindow = new ArbitraryWindow(excelHwnd_IntPtr);
return excelWindow;
}
/// <summary>
/// Activates the excel window.
/// </summary>
public static void ActivateExcelWindow()
{
var currentlyActiveForm = Form.ActiveForm;
//if (currentlyActiveForm != null && currentlyActiveForm.GetType() == typeof(FormProgress)) return;
var handle = GetMainExcelWindow().Handle;
BringWindowToTop(handle);
}
「ActivateExcelWindow()」を呼び出すだけで、Excel のメイン ウィンドウをアクティブにできます。
よろしく、ヨルグ
于 2014-05-02T09:02:01.677 に答える