Is it possible to change a console window's icon from .net? Without using win32 calls.
|
|
|||||||
|
|
|
If it is your own application's console window, then you can...
(I'm assuming you are in a C# environment, but VB.NET should be similar) If you are starting an external process... then you can make a "launcher" console project to which you can set your own icon the same way as above. If you means an externally owned console window that you don't have control over... then I think you do need win32/pinvoke call. |
||
|
|
|
|
Generally, you cannot assign an icon to the window of the application when it is running from vshost. It will work correctly when it is running outside the IDE, with the condition that you set a custom icon in the Project Properties dialog. |
||
|
|
|
|
I had the icon set in the project properties, as Chakrit suggested, but my problem was that I was running it from Visual Studio, which runs app.vshost.exe, not app.exe directly. Since app.vshost.exe didn't have the icon it was appearing not to work, even though it was configured correctly. If a moderator see this, please un-delete chakrit's very good post. |
||||||
|
