Posts

Showing posts from September, 2010

Silverlight 4.0 Tutorial Index

Here is a list of all the posts in the Silverlight 4.0 Tutorial i had till now, i will keep this list updated as i publish more content : - Part1: Building the Database and the Domain Model - Part2: Capturing the WebCam - Part3: Working with the DataForm Control - Part4: ListBox ItemTemplate - Part5: More Blend! - Part6: Working with the ItemsControl - Part7: Visual States - Part8: Fluid Layouts - Part9: Using the WebCam as a Barcode Scanner - Part10: Working with the PathListBox - Part11: Roulette Behavior - Part12: Collecting Attendees Feedback using Windows Phone 7

Windows Phone 7 Developer Tools RTM Problem

Image
I couldn’t get Windows Phone 7 Tools RTM to work, whenever i try to deploy the application i receive the following error “Connection failed because of invalid command-line arguments.” this long thread which comes on the top of the search results has the solution buried among all the replies http://social.msdn.microsoft.com/Forums/en-US/windowsphone7series/thread/fde4c415-44c5-4837-b1cd-e09727a75b92/ the problem was that the Virtual Machine Manager (VMM) service used by the Windows Phone Emulator was not running. you can query the status of the VMM service from command window by typing the command “sc query vmm” , if the service is stopped, start it by the following command (run the command window as administrator) “sc start vmm”. Thanks god :), this version of the emulator is faster than the previous ones. Here is a screenshot of a default Windows Phone Panorama Application

Silverlight 4.0 Tutorial (8 of N): Fluid Layouts

Image
Read Previous Posts: Part1 , Part2 , Part3 , Part4 , Part5 , Part6 , Part7 In our last post we implemented visual states for our application, you may have noticed in the States tab in Blend the Default Transition section the default transition is applied when moving from any state to any other state. - You can create transitions between any pair of states, for each transition you specify how long it will take (transition duration) and the easing function to be used. the easing function makes the animations look real, so instead of the linear interpolations of the values that change between states you can choose the appropriate easing function to interpolate the values, there are many easing functions in Blend (quadratics, cubic, bounce, elastic, etc.) and you can even code your own easing function. - You can see a preview of the state transitions by turning on the transition preview (click on the icon highlighted in the below image) by turning on the transition preview whenever

Upcoming Microsoft Middle East Events

Microsoft Open Door Event: - Riyadh: November 2-3 - Jeddah: November 7 (more information here ) TechEd Middle East 2011: Dubai March 8 – 10 (more info here )

Silverlight 4.0 Tutorial (7 of N): Visual States

Image
Read Previous Posts: Part1 , Part2 , Part3 , Part4 , Part5 , Part6 Continuing our registration booth application, i did some changes to the application UI, here’s how the application look like right now - As you can see i removed the navigation features in the application, we will keep it as a one simple xaml page, i also changed some colors (excuse my poor color picking skills). - After looking at the UI i think that the agenda is not taking enough space, the lower DataForm is taking more space while this DataForm is needed only when someone wants to register, the focus of the default UI should be the agenda and the registered attendees, so we need to make the DataForm invisible and show it on demand, this is pretty easy to do, first i will add a button to view/hide the DataForm. - I will add a new column to the LayoutRoot grid and put the button inside this column, i will also add a simple rotate transform for this button - The button should look like this - Fi