tagged [icons]

Setting a different taskbar icon to the icon displayed in the titlebar (C#)?

Setting a different taskbar icon to the icon displayed in the titlebar (C#)? I have both dark and light versions of my application icon; the dark version works best on gray surfaces such as Windows XP...

29 Oct at 04:7

Any easy way to use icons from resources?

Any easy way to use icons from resources? I have an C# app. I need to add an icon to that app so i added an icon resource. Adding resource went fine, but is there any way to use my (resource) icon as ...

13 Apr at 23:16

favicon.ico filesize == 60KB?

favicon.ico filesize == 60KB? So as to waste some more time today, I converted a .jpg file to .ico and put it in favicon.ico. The .jpg is less than 1KB big; the .ico file is ** 60KB ** !!, bigger than...

11 Mar at 20:18

Programmatically changing button icon in WPF

Programmatically changing button icon in WPF I currently have a button, which has an icon/image on it. I have configured the button and image in XAML: ```

11 May at 22:23

using FontIcon Glyph from code (C#)

using FontIcon Glyph from code (C#) I try to add some of the base provided icon from FontIcon class for universal windows 10 apps (those that we can see mostly in appbar). when running this piece of c...

28 Feb at 21:32

C# Get the default icon of an exe file

C# Get the default icon of an exe file > [Get File Icon used by Shell](https://stackoverflow.com/questions/462270/get-file-icon-used-by-shell) In my program i am reading a directory of files and dis...

23 May at 10:29

Setting application icon in Explorer?

Setting application icon in Explorer? I am trying to set a file icon for a program I am creating. I can get the icon to show on the `taskBar` when I am running the program. But I can't get it to show ...

19 Mar at 14:24

How do I use standard Windows warning/error icons in my WPF app?

How do I use standard Windows warning/error icons in my WPF app? I'm making a custom error dialog in my WPF app and I want to use a [standard windows error icon](http://msdn.microsoft.com/en-us/librar...

3 Apr at 21:30

Display Icon in WPF Image

Display Icon in WPF Image I have a WPF application that needs to extract the icon off of an executable. I found [here](https://stackoverflow.com/questions/203456/how-can-i-get-the-icon-from-the-execut...

18 Jul at 18:53

How to add a browser tab icon (favicon) for a website?

How to add a browser tab icon (favicon) for a website? I've been working on a website and I'd like to add a small icon to the browser tab. How can I do this in HTML and where in the code would I need ...

29 Aug at 08:1

How can I programmatically manipulate Windows desktop icon locations?

How can I programmatically manipulate Windows desktop icon locations? Several years back, I innocently tried to write a little app to save my tactically placed desktop icons because I was sick of drag...

25 Sep at 06:11

Can I change the color of Font Awesome's cog icon?

Can I change the color of Font Awesome's cog icon? I have to wrap my icon within an `` tag for some reason. Is there any possible way to change the color of a font-awesome icon to black? or is it impo...

3 Aug at 20:37

Displaying an icon in a picturebox

Displaying an icon in a picturebox I am trying to display `icon file` in a picture box. I'm using this code to set the image. But I'm getting this exception. ``` System.ArgumentOutOfRangeException: Re...

3 Apr at 08:55

How to style icon color, size, and shadow of FontAwesome Icons

How to style icon color, size, and shadow of FontAwesome Icons How could I style the color, size and shadow of icons from [FontAwesome's Icons](http://fortawesome.github.com/Font-Awesome/#overview)? F...

How do I display a Windows file icon in WPF?

How do I display a Windows file icon in WPF? Currently I'm getting a native icon by calling SHGetFileInfo. Then, I'm converting it to a bitmap using the following code. The Bitmap eventually gets disp...

25 Aug at 01:31

Using a 256 x 256 Windows Vista icon in an application

Using a 256 x 256 Windows Vista icon in an application I have an application which I have made a 256 x 256 Windows Vista icon for. I was wondering how I would be able to use a 256x256 PNG file in the ...

8 Oct at 10:44

Which icon sizes should my Windows application's icon include?

Which icon sizes should my Windows application's icon include? I have a Windows application which will run in Windows XP and newer (i.e. Vista/7). According to the [Vista UI Guidelines](http://msdn.mi...

10 Nov at 16:45

Get File Icon used by Shell

Get File Icon used by Shell In .Net (C# or VB: don't care), given a file path string, FileInfo struct, or FileSystemInfo struct for a real existing file, how can I determine the icon(s) used by the sh...

23 May at 12:26

Get application icon of C# WinForms App

Get application icon of C# WinForms App I've assigned an icon to a C# WinForms app using the Project Properties tab. This icon is supplied along with the program manifest at build time. Is there a way...

23 May at 12:2

Put search icon near textbox using bootstrap

Put search icon near textbox using bootstrap I am using bootstrap by default textbox taking full width of column and I want to put search icon at the end to textbox. My code is like this: ``` ...

C# - Changing the icon of the taskbar

C# - Changing the icon of the taskbar I want to change the icon on the taskbar of my software, so I changed the project settings. This path was suggested by Visual Studio itself ![Path to the icon](ht...

6 Mar at 11:46

How to make/get a multi size .ico file?

How to make/get a multi size .ico file? I simply want to have an .ico file that has multiple sizes of the icon image contained within it. I'd like it for use in a cross-platform desktop application (s...

21 Sep at 14:9

C# - Capturing the Mouse cursor image

C# - Capturing the Mouse cursor image ## BACKGROUND - - [http://www.codeproject.com/KB/cs/DesktopCaptureWithMouse.aspx?display=Print](http://www.codeproject.com/KB/cs/DesktopCaptureWithMouse.aspx?disp...

22 Dec at 22:50

C# Argument 'picture' must be a picture that can be used as an Icon

C# Argument 'picture' must be a picture that can be used as an Icon I am having trouble importing an icon into my application. I have a main form and I am trying to import to it a new icon via the `Ic...

29 Nov at 21:17

Adding multiple Icons (Win32-Resource) to .NET-Application

Adding multiple Icons (Win32-Resource) to .NET-Application it is possible to set the Application-Icon in the Project Properties. If you do this the exe will have this icon instead of the default one. ...

18 Jan at 23:4