<!-- Base color -->
<Ellipse Width="24" Height="24" Margin="10">
<Ellipse.Fill>
<RadialGradientBrush GradientOrigin=".5,.8" RadiusX="0.6">
<GradientStop Color="#002255" Offset="1" />
<GradientStop Color="#00eeff" Offset="0" />
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
<!-- Highligh color-->
<Ellipse Width="18" Height="15" Canvas.Top="1" Canvas.Left="3" Margin="10">
<Ellipse.Fill>
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
<GradientStop Color="#ffffff" Offset="0" />
<GradientStop Color="Transparent" Offset="1" />
</LinearGradientBrush>
</Ellipse.Fill>
</Ellipse>
|
|
|
|||
|
|
|
|
Here is the code for your first Ellipse:
You can easily make the second one on the same lines. EDIT: The attached canvas properties in the second Ellipse might get tricky if you are new, so here is how you set them:
|
|||
|
|
|
I'll give you an example. This:
is equivalent to this:
http://msdn.microsoft.com/en-us/library/system.windows.media.lineargradientbrush.aspx |
|||
|
