zenimpulse
New member
- Joined
- Apr 5, 2003
- Messages
- 2
howdy all.
/*
i have an app that (ideally) will use a slew of custom controls, either explicitly drawn by myself through GDI+, or by using pre-made controls not native to the VS.NET IDE.
The goal is to have an app that does NOT look like a traditional win app, but has the same functionality. My concern is performance penalties by using images so much.
Im sure there are better ways to go about doing this, so Im all ears for any suggestions!
*/
Currently for example, I have 2 picture boxes to serve as the "Minimize" and "Maximize" buttons. Each button has 2 images- one for normal state, and another for MouseEnter.
I added the files to the project, then manually set the pictureBoxs image property. Based on mouse events, the image property changes to reflect the image desired.
does this make sense? Im going to have these same "buttons" on at least 5 other forms, and this is in addition to many more "buttons" yet to be implemented.
(this is for a tablet pc, so we are trying to make this as gui-friendly as possible)
/*
i have an app that (ideally) will use a slew of custom controls, either explicitly drawn by myself through GDI+, or by using pre-made controls not native to the VS.NET IDE.
The goal is to have an app that does NOT look like a traditional win app, but has the same functionality. My concern is performance penalties by using images so much.
Im sure there are better ways to go about doing this, so Im all ears for any suggestions!
*/
Currently for example, I have 2 picture boxes to serve as the "Minimize" and "Maximize" buttons. Each button has 2 images- one for normal state, and another for MouseEnter.
I added the files to the project, then manually set the pictureBoxs image property. Based on mouse events, the image property changes to reflect the image desired.
does this make sense? Im going to have these same "buttons" on at least 5 other forms, and this is in addition to many more "buttons" yet to be implemented.
(this is for a tablet pc, so we are trying to make this as gui-friendly as possible)