Click here to Skip to main content
Licence CPOL
First Posted 19 Nov 2008
Views 24,648
Downloads 802
Bookmarked 19 times

Analog Clock in Expression Blend 2

By | 19 Nov 2008 | Article
A simple analog clock in Expression Blend 2

EB2.jpg

Introduction

This is a simple WPF App in Expression Blend 2 SP1 that shows you how we can create an analog clock with some effects like Shadow and Blur.
I haven't used any images in this project and everything that you see has been created with XAML code.

Background

Some days ago, I created another very simple anolog clock in Visual Studio 2008. If you think this project is a little difficult, you can see that first.
These training videos can also help you to work with Expression Blend. I've used them.

Using the Code

In Expression Blend, we don't need to edit XAML code manually (typically), but I think that if we know how the XAML code works, it helps us to create a better WPF app.

Well, the difficult part of this project is creating three pointers for our clock with rotation ability. For that, I've used this XAML code:

  <Rectangle Fill="#FFDCDCDC" Margin="86.169,8,85.904,88.555" 
  Stroke="#FFDCDCDC" StrokeDashCap="Round" 
  StrokeEndLineCap="Round" StrokeLineJoin="Round" 
  StrokeStartLineCap="Round" StrokeThickness="1" 
  RadiusX="1" RadiusY="1" Opacity="0.8" 
  x:Name="rectangleSecond" RenderTransformOrigin="0.5,1" 
  d:IsHidden="True"> 
		<Rectangle.RenderTransform>
			<TransformGroup>
				<ScaleTransform ScaleX="1" ScaleY="1"/>
				<SkewTransform AngleX="0" AngleY="0"/>
				<RotateTransform x:Name="secondHand" Angle="0"/>
				<TranslateTransform X="0" Y="0"/>
			</TransformGroup>
		</Rectangle.RenderTransform>
</Rectangle>

Now we can rotate this pointer easily with this C# code:

secondHand.Angle = DateTime.Now.Second * 6;

That was very easy. Wasn't it?

Now we use a simple method for rotating our three pointers:

void timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
	this.Dispatcher.Invoke(DispatcherPriority.Normal, (Action)(() =>
	{
		secondHand.Angle = DateTime.Now.Second * 6; 
		minuteHand.Angle = DateTime.Now.Minute * 6; 
		hourHand.Angle = (DateTime.Now.Hour * 30) + 
				(DateTime.Now.Minute * 0.5); 
	}));
}

For further learning about the above method, you can see here.
That's all.

History

  • 20th November, 2008: First post

License

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

About the Author

Mohammad Dayyan



Iran (Islamic Republic Of) Iran (Islamic Republic Of)

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionadding Code PinmemberMember 867797419:49 25 Feb '12  
GeneralNice clock. Simple and pretty PinmemberRoger Bacon11:22 21 Apr '09  
GeneralInvalid tags Pinmemberberzie19:31 24 Jan '09  
GeneralMy vote of 1 PinmemberCountry Man1:58 27 Nov '08  
context to .net
Generalnice clock Pinmemberchristoph braendle22:04 19 Nov '08  
GeneralRe: nice clock PinmemberMohammad Dayyan4:10 20 Nov '08  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120604.1 | Last Updated 19 Nov 2008
Article Copyright 2008 by Mohammad Dayyan
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid