Predefined bitmaps for toolbars ?
-
Are there predefined images for toolbars and menu items that we can use ? A bit like the default ones that are used for default MFC application (save, load, ... ) For using in Managed C++ .net Forms application. Thanks.
Maximilien Lincourt For success one must aquire one's self
-
Are there predefined images for toolbars and menu items that we can use ? A bit like the default ones that are used for default MFC application (save, load, ... ) For using in Managed C++ .net Forms application. Thanks.
Maximilien Lincourt For success one must aquire one's self
Look in the Common7\Graphics directory of your VS.NET installation directory. Use the bitmaps and set the mask to
System.Drawing.Color.Silver
.
Reminiscent of my younger years... 10 LOAD "SCISSORS" 20 RUN
-
Look in the Common7\Graphics directory of your VS.NET installation directory. Use the bitmaps and set the mask to
System.Drawing.Color.Silver
.
Reminiscent of my younger years... 10 LOAD "SCISSORS" 20 RUN
I don't have that directory or anything looking like Graphics, the only images that I found were the ones in the different samples. Anyway, for now, it's not that important, will change and/or use other custom made images. Max.
Maximilien Lincourt For success one must aquire one's self
-
I don't have that directory or anything looking like Graphics, the only images that I found were the ones in the different samples. Anyway, for now, it's not that important, will change and/or use other custom made images. Max.
Maximilien Lincourt For success one must aquire one's self
It was an option while you were setting up Visual Studio. You may want to change your setup options from Add/Remove Programs for Visual Studio and have them installed. They come in handy. Another way is to use ildasm.exe to dump the IL and resources (everything in the assembly referenced in the assembly manifest) into a directory for the major assemblies like System.dll, System.Design.dll, System.Drawing.dll, and System.Windows.Forms.dll. There's a lot of goodies in there!
Reminiscent of my younger years... 10 LOAD "SCISSORS" 20 RUN