Click here to Skip to main content
15,884,917 members
Articles / Multimedia / GDI+
Article

A shiny orb button in GDI+

Rate me:
Please Sign up or sign in to vote.
2.59/5 (15 votes)
1 Jan 2008CPOL 65.8K   1.5K   36   6
A button with a shiny orb effect on mouse hover.

Image 1

Introduction

I was actually experimenting with different brush options to create a glassy orb, but it did not work .. But, I still liked the effect even though it wasn't really what I wanted .. So, I turned this into a button. Hopefully, someone may find this useful. When the world is going to WPF ...

Using the code

There aren't many options to play around with except that you can add image, text, and colors.. Do whatever you want with the code, and if you manage to create a shiny glass effect .. let me know. The code is short, and most of the implementation is in the OnPaint method.

The following is used to create the animation effect for the glowing light:

C#
pgb1.FocusScales = new PointF(_focus, _focus);

where pgb1 is the PathGradientBrush.

Then, as a mouse hovers over, it kick starts a timer and increases the focus:

C#
if (_focus < 0.9f)
    _focus = _focus + 0.1f;
}
else { 
    timer.Stop(); 
}

As focus reaches 1, the timer stops.

The reverse occurs when the mouse leaves the control.

History

  • Version 0.1

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) www.nextwavesoft.com
United States United States
Senior Software Developer at nextwavesoft

Comments and Discussions

 
GeneralMy vote of 5 Pin
Member 367289419-Jan-13 11:06
Member 367289419-Jan-13 11:06 
GeneralMy vote of 1 Pin
Nettai16-Dec-08 21:29
Nettai16-Dec-08 21:29 
Questionhow can i Pin
shahidashraf28-Aug-08 6:56
shahidashraf28-Aug-08 6:56 
GeneralNot very shiny Pin
King_kLAx2-Jan-08 10:15
King_kLAx2-Jan-08 10:15 
GeneralRe: Not very shiny Pin
Steve-Low-NextwaveSoft2-Jan-08 13:58
Steve-Low-NextwaveSoft2-Jan-08 13:58 
AnswerRe: Not very shiny Pin
Vartan Simonian2-Sep-08 17:14
Vartan Simonian2-Sep-08 17:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.