15

How can I write gadgets for the Windows 7 desktop using C# and Visual Studio 2008? I'm looking for tutorials and resources on that topic.

Andy E
  • 338,112
  • 86
  • 474
  • 445
George2
  • 44,761
  • 110
  • 317
  • 455

3 Answers3

9

Try Authoring Sidebar Gadgets in C#.

C# is not the only option. This detailed tutorial explains how to develop gadgets without C#. (Orginally gadgets were authored in a mix of XML, HTML, CSS, and some IE scripting language.)

How to get started with Windows 7 gadgets is a related Stack Overflow question that may also provide additional information.

Community
  • 1
  • 1
Leftium
  • 16,497
  • 6
  • 64
  • 99
2

I have not tried it myself, but this might help:

http://www.codeproject.com/KB/gadgets/RunVistaGadget2.aspx

aschoenebeck
  • 439
  • 7
  • 9
  • 1
    Hi, this is not a tutorial about how to write gadgets, but how to write a plug-in for VSTS to develop gadgets. Any turorials about how to develop gadgets for recommendation? – George2 Jul 23 '09 at 15:33
2

Gadget-creation, calling your .NET-code via Interop: http://www.codeproject.com/KB/gadgets/GadgetInterop.aspx

nice & powerful with good example

Steav
  • 1,478
  • 13
  • 28
  • Also: Visual-Studio Solution-Example for a Silverlight-Gadget: http://www.lazarciuc.ro/ioan/2008/08/02/creating-a-vista-sidebar-gadget-using-microsoft-silverlight/ very tricky, but enables you to design your gadget with silverlight. – Steav Apr 16 '10 at 06:27