me.at.coding
me.at.coding

Reputation: 17654

Windows save, open... icons as vector graphics?

For my application (WPF) I'd like to use the standard icons for save, open... However, I'm not aware of them being available as vector graphics? So, where can one get them, is it maybe possible to extract them from some DLL files or whatever? Thank you very much!

Upvotes: 0

Views: 851

Answers (2)

Nir
Nir

Reputation: 29594

The icons that are included with Visual Studio 2008 are bitmap only, I haven't installed Visual Studio 2010 yet.

There's a package of nice free common toolbar icons in XAML format at: http://www.grafile.com/presentation/Vista_Toolbar_library.html (haven't used them myself yet).

You can find a lot of (usually not free) icons sets by googling "xaml icons", you can find even more if you google "vector icons" but those will usually won't be XAML

Upvotes: 1

twk
twk

Reputation: 3120

Consider using big size icons (eg. 256x256 or 128x128 pix) and wpf would scale them down nicely. Probably you wouldn't make your icons bigger than 128x128 px anyway.

Icons you can use:

Upvotes: 0

Related Questions