I am trying to prevent the user from pinning my .NET app to the taskbar. I've found some code on the Old New Thing that does just that. However, it is in C++.

#include <shellapi.h>
#include <propsys.h>
#include <propkey.h>

HRESULT MarkWindowAsUnpinnable(HWND hwnd)
{
 IPropertyStore *pps;
 HRESULT hr = SHGetPropertyStoreForWindow(hwnd, IID_PPV_ARGS(&pps));
 if (SUCCEEDED(hr)) {
  PROPVARIANT var;
  var.vt = VT_BOOL;
  var.boolVal = VARIANT_TRUE;
  hr = pps->SetValue(PKEY_AppUserModel_PreventPinning, var);
  pps->Release();
 }
 return hr;
}


BOOL
OnCreate(HWND hwnd, LPCREATESTRUCT lpcs)
{
 MarkWindowAsUnpinnable(hwnd);
 return TRUE;
}

I am having very little luck converting it to c#. Can someone help?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You can download the Windows API Code Pack which has the necessary p/invoke calls you need to translate the code in your post to C#.

Either use the library in whole or find the specific calls and definitions you require (search it for SHGetPropertyStoreForWindow and then its other dependencies).

link|improve this answer
That glass is only half-full, TaskbarNativeMethods is an internal class. – Hans Passant Jun 16 '11 at 21:47
@Hans Passant: Is this a licensing issue related comment? He could use their implementation as hint for his own. Anyway, the internal class is exposed via WindowProperties which is public. – Andrei Jun 17 '11 at 16:54
Nothing to do with licensing. Yes, he'll have to copy-paste declarations from the code pack source code. – Hans Passant Jun 17 '11 at 18:39
@Hans, @Andrei I did copy & paste a metric ton of code required just for this one function. Turned out to be about 50k of c# code. – AngryHacker Jun 17 '11 at 22:15
@AngryHacker: Might be easier to just use all of it as-is. You may find other uses for it in the future and it will save you another copy-paste session. – Andrei Jun 17 '11 at 22:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.