アップデート:
@donovan によると、現代の WPF は、設定
ShowInTaskbar="False"
とVisibility="Hidden"
XAML でこれをネイティブにサポートしています。(私はまだこれをテストしていませんが、それでもコメントの可視性を上げることにしました)
元の答え:
Win32 API でタスク スイッチャーからウィンドウを非表示にする方法は 2 つあります。
- 拡張ウィンドウ スタイルを追加するには、
WS_EX_TOOLWINDOW
これが正しいアプローチです。
- 別のウィンドウの子ウィンドウにします。
WindowStyle=ToolWindow
残念ながら、 WPFは Win32 ほど柔軟なウィンドウ スタイルの制御をサポートしていませWS_CAPTION
んWS_SYSMENU
。一方、 を設定することでこれら 2 つのスタイルを削除できますがWindowStyle=None
、拡張スタイルは設定されWS_EX_TOOLWINDOW
ず、ウィンドウはタスク スイッチャーから非表示になりません。
WPF ウィンドウをWindowStyle=None
タスク スイッチャーからも非表示にするには、次の 2 つの方法のいずれかを実行できます。
- 上記のサンプル コードを使用して、ウィンドウを小さな隠しツール ウィンドウの子ウィンドウにします。
- ウィンドウ スタイルを変更して、
WS_EX_TOOLWINDOW
拡張スタイルも含めるようにします。
個人的には、2 番目のアプローチを好みます。繰り返しになりますが、クライアント領域でガラスを拡張したり、キャプションで WPF 描画を有効にしたりするなどの高度な作業を行うので、多少の相互運用は大きな問題ではありません。
Win32 相互運用ソリューション アプローチのサンプル コードを次に示します。まず、XAML 部分:
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="300" Width="300"
ShowInTaskbar="False" WindowStyle="None"
Loaded="Window_Loaded" >
ここではあまり派手なことはありません。ウィンドウをWindowStyle=None
andで宣言するだけShowInTaskbar=False
です。また、拡張ウィンドウ スタイルを変更する Loaded イベントにハンドラーを追加します。その時点ではまだウィンドウ ハンドルがないため、コンストラクターでその作業を行うことはできません。イベント ハンドラー自体は非常に単純です。
private void Window_Loaded(object sender, RoutedEventArgs e)
{
WindowInteropHelper wndHelper = new WindowInteropHelper(this);
int exStyle = (int)GetWindowLong(wndHelper.Handle, (int)GetWindowLongFields.GWL_EXSTYLE);
exStyle |= (int)ExtendedWindowStyles.WS_EX_TOOLWINDOW;
SetWindowLong(wndHelper.Handle, (int)GetWindowLongFields.GWL_EXSTYLE, (IntPtr)exStyle);
}
そして、Win32 相互運用宣言。サンプル コードを小さく保つために、列挙型から不要なスタイルをすべて削除しました。また、残念ながら、SetWindowLongPtr
Windows XP の user32.dll にはエントリ ポイントが見つかりませんSetWindowLong
。
#region Window styles
[Flags]
public enum ExtendedWindowStyles
{
// ...
WS_EX_TOOLWINDOW = 0x00000080,
// ...
}
public enum GetWindowLongFields
{
// ...
GWL_EXSTYLE = (-20),
// ...
}
[DllImport("user32.dll")]
public static extern IntPtr GetWindowLong(IntPtr hWnd, int nIndex);
public static IntPtr SetWindowLong(IntPtr hWnd, int nIndex, IntPtr dwNewLong)
{
int error = 0;
IntPtr result = IntPtr.Zero;
// Win32 SetWindowLong doesn't clear error on success
SetLastError(0);
if (IntPtr.Size == 4)
{
// use SetWindowLong
Int32 tempResult = IntSetWindowLong(hWnd, nIndex, IntPtrToInt32(dwNewLong));
error = Marshal.GetLastWin32Error();
result = new IntPtr(tempResult);
}
else
{
// use SetWindowLongPtr
result = IntSetWindowLongPtr(hWnd, nIndex, dwNewLong);
error = Marshal.GetLastWin32Error();
}
if ((result == IntPtr.Zero) && (error != 0))
{
throw new System.ComponentModel.Win32Exception(error);
}
return result;
}
[DllImport("user32.dll", EntryPoint = "SetWindowLongPtr", SetLastError = true)]
private static extern IntPtr IntSetWindowLongPtr(IntPtr hWnd, int nIndex, IntPtr dwNewLong);
[DllImport("user32.dll", EntryPoint = "SetWindowLong", SetLastError = true)]
private static extern Int32 IntSetWindowLong(IntPtr hWnd, int nIndex, Int32 dwNewLong);
private static int IntPtrToInt32(IntPtr intPtr)
{
return unchecked((int)intPtr.ToInt64());
}
[DllImport("kernel32.dll", EntryPoint = "SetLastError")]
public static extern void SetLastError(int dwErrorCode);
#endregion