13 lines
325 B
C#
13 lines
325 B
C#
|
|
using System;
|
|||
|
|
using System.Runtime.InteropServices;
|
|||
|
|
|
|||
|
|
namespace KGdev.BI3D.Revit.Addin.MainWindow.External.BrowserConnector
|
|||
|
|
{
|
|||
|
|
internal static class User32
|
|||
|
|
{
|
|||
|
|
[DllImport("user32.dll")]
|
|||
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|||
|
|
public static extern bool SetForegroundWindow(IntPtr hWnd);
|
|||
|
|
}
|
|||
|
|
}
|