Overrideing Windows Handlers

  • Thread starter Thread starter ShayHk
  • Start date Start date
S

ShayHk

hi..
I want to know if there is a way in c# to put button and handle
microsoft windows..

for exmple..
I want to add to windows Explorer window a new button ..
Or a new toolbar
 
Hello ShayHk,
I want to know if there is a way in c# to put button and handle
microsoft windows..

for exmple..
I want to add to windows Explorer window a new button ..
Or a new toolbar

There is no generic mechanism that would allow you to extend any arbitrary
Windows application with your own controls. Many applications provide some
kind of extensibility, and Windows Explorer is one of them - try searching
Google for "c# shell extension" or something similar and you should come
up with a lot of helpful content.

The problem remains that for every other application you want to extend
you'll have to find out whether the developers of that application have
provided extensibility interfaces, and if so, how they work.


Oliver Sturm
 
Hello Oliver,


http://groups.google.com/group/micr..._frm/thread/974d7cd82cb3c18e/c7aed09a8e32e797
http://www.codeproject.com/csharp/dotnetbandobjects.asp
http://www.codeproject.com/csharp/ie_advanced_toolbar.asp

OS> Hello ShayHk,
OS>OS> There is no generic mechanism that would allow you to extend any
OS> arbitrary Windows application with your own controls. Many
OS> applications provide some kind of extensibility, and Windows
OS> Explorer is one of them - try searching Google for "c# shell
OS> extension" or something similar and you should come up with a lot of
OS> helpful content.
OS>
OS> The problem remains that for every other application you want to
OS> extend you'll have to find out whether the developers of that
OS> application have provided extensibility interfaces, and if so, how
OS> they work.
OS>
OS> Oliver Sturm
OS>
---
WBR,
Michael Nemtsev [C# MVP] :: blog: http://spaces.live.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsch
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top