Skip Navigation LinksHome / Articles / Learn / QuickStarts

QuickStarts

+
Page 
Items Resolution

  • 6 comments  /  posted by  Thanigainathan Siranjeevi  on  Apr 27, 2009 (10 months ago)

    Silverligth 3 is the most awaited release of Microsoft. I found the download’s from the page Silverlight 3. The following are the utlities that can be found in this download page.

    1. Silverlight 3 Beta Tools for Visual Studio
    2. Microsoft Expression Blend 3 Preview
    3. Silverlight Toolkit
    4. .NET RIA Services
    5. Silverlight 3 Beta Documentation

    In this list the most attracting one is the RIA services which is making wonders with Silverlight now. I will be discussing about them in the later posts.

    Share


  • 0 comments  /  posted by  Pencho Popadiyn  on  Apr 21, 2009 (10 months ago)

    1. Introduction

    In the previous part of the article I showed the first part of most important patterns and practices used in the Composite Application Library (CAL). In the second part I will show you the second group – the Modularity patterns.

    2. Patterns and Practices in the CAL - quick overview

    As a whole the patterns used in CAL can be separated in three main groups:

    • Composite User Interface patterns (part 1)
      • Composite
      • Composite View
      • Command
      • Adapter
    • Modularity patterns (part 2)
      • Separated interface and Plug In
      • Service Locator
      • Dependency Injection
      • Event Aggregator
      • Façade
      • Registry
    • Testability patterns (part 3)
      • Inversion of control
      • Separated presentation

    3.

    Share
  • 14 comments  /  posted by  Chris Anderson  on  Apr 15, 2009 (11 months ago)

    Introduction

    In Part 7.1 of this series I looked at the importance of styling your Silverlight applications. In this article I will be taking a look at fashions in user interface design of late, and what basic elements can be identified as working towards beautiful and functional applications. Also I will address some of the “controversy” from my previous article and provide some opinions and responses to the comments I received.

    Before we start, I have a disclaimer. I’m a developer, not a graphics designer – so I’m writing these styling articles from a developer’s perspective (and with the same limited graphical design skills many other developers share).

    Share
  • 11 comments  /  posted by  Martin Mihaylov  on  Apr 13, 2009 (11 months ago)

    Introduction

    In this previous article we added a DomainDataSource control in our application and bounded it to a DataGrid and with their help we easily visualized our data. Now we are going to implement some more goodies into the application - sorting and filtering. We achieve that via the DomainDataSource control, as it provides such functionality and is really simple to use.

    Here are some links to the previous articles if you have missed them:

    Creating applications with .NET RIA Services Part 1 - Introduction

    Creating applications with .NET RIA Services Part 2 - Creating the project

    Creating applications with .NET RIA Services Part 3 - Adding a DomainService class

    Creating applications with .NET RIA Services Part 4 - Adding a DomainDataSource

    Here is a link to the live demo at this stage and the source code. Note that they will be updated with each article! ;)

    Share
  • 0 comments  /  posted by  Pencho Popadiyn  on  Apr 08, 2009 (11 months ago)

    1. Introduction

    In previous articles I showed how the most famous composite design patterns (Model – View – Controller and Model – View – Presenter) can be used with great success in Silverlight despite of the different programming model in Silverlight. My latest article targets a completely new pattern which has been created especially for WPF, but it is also very suitable for Silverlight applications. Today I’ve decided to continue my series of articles with OOP approach and to present you the main design patterns and practices used in the Composite Application Library (CAL).

    Share
  • 2 comments  /  posted by  Martin Mihaylov  on  Mar 31, 2009 (11 months ago)

    Introduction

    By now we have discussed the preparations around the project, how to add a DomainService that contains our business logic and combine it with the entity framework. If you have missed one of the previous articles you can find them here:

    Creating applications with .NET RIA Services Part 1 - Introduction

    Creating applications with .NET RIA Services Part 2 - Creating the project

    Creating applications with .NET RIA Services Part 3 - Adding a DomainService class

    As you know from the previous articles in order to demonstrate the features of the .NET RIA Services I am creating the Web Administration Tool from ASP.NET in Silverlight. In this article I am going to create the Manage Users page and add the functionality needed to visualize Data. For that purpose I will need the DataGrid control, the new DataPager control and the DomainDataSource that is a part of the .NET RIA Services framework.

    Here is a link to the live demo at this stage and the source code. Note that they will be updated with each article! ;)

    Share
  • 16 comments  /  posted by  Martin Mihaylov  on  Mar 29, 2009 (11 months ago)

    Introduction

    With the beta release of Silverlight 3 a lot of new goodies were introduced and one of them was the navigation framework and in the final release additional features were added. It allows us to easily implement navigation between the newly introduced Page controls in a Silverlight application, interacts with the Browser History journal and provides us with Uri mapping. To learn more about these features read on the article.

    For this article the demo will be the Mini SilverlightShow application, which I used not a long time ago as a demo to my article about the Telerik's RadPageNavigation control.

    Share
  • 7 comments  /  posted by  Chris Anderson  on  Mar 26, 2009 (11 months ago)

    Introduction

    In Part 6 of this series I looked at implementing a means for displaying reports that appear to be within the application and permitting them to be printed. In each of the articles so far I have discussed major components of line of business application development, but have spent little or no time in styling the application in anticipation of writing an article dedicated to doing so. However that article has turned into seven articles which will become a mini-series within this existing series.

    Share
  • 6 comments  /  posted by  Nikolay Raychev  on  Mar 25, 2009 (11 months ago)

    Introduction

    Animation Easing are built in animation functions in Silverlight 3. They include several commonly used animations effects.

    Overview

    I'll describe in details how you can use the BackEase animation. Imagine that you want to move an Ellipse from the top to the bottom of a Canvas. You just create a Storyboard with DoubleAnimation as follows:

    <UserControl x:Class="AnimationEasings.MainPage" 
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"   
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"   
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"   
        mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480" 
        Width="150" Height="450">  
        <UserControl.Resources> 
            <Storyboard x:Name="sbBackEaseIn">  
                <DoubleAnimation From="50" To="400" Duration="0:0:10" 
                    Storyboard.TargetName="circle" 
                    Storyboard.TargetProperty="(Canvas.Top)">  
                </DoubleAnimation> 
            </Storyboard> 
        </UserControl.Resources> 
        <Canvas x:Name="LayoutRoot" 
                Background="LightYellow">  
            <Ellipse x:Name="circle" Width="50" 
                Height="50" Canvas.Top="0" Canvas.Left="50">  
                <Ellipse.Fill> 
                    <ImageBrush x:Name="backgroundImageBrush" 
                        Stretch="UniformToFill">  
                        <ImageBrush.ImageSource> 
                            <BitmapImage x:Name="bmpBackground" 
    UriSource="http://www.silverlightshow.net/Storage/Users/nikolayraychev/sls_icon.jpg">  
                            </BitmapImage> 
                        </ImageBrush.ImageSource> 
                    </ImageBrush> 
                </Ellipse.Fill> 
            </Ellipse> 
        </Canvas> 
    </UserControl> 

    Code behind:

    public MainPage()  
    {  
        InitializeComponent();  
     
        this.sbBackEaseIn.Begin();  

    OK, but what if you want to make the ellipse move up for a while and after that move down.

    Share
  • 34 comments  /  posted by  Nikolay Raychev  on  Mar 19, 2009 (11 months ago)

    Introduction

    The SaveFileDialog is a new dialog control in Silverlight 3 which allows the user to save a file on the client machine.

    Overview

    To demonstrate the common use of the SaveFileDialog I’ll give an example:

    When you click on the button a dialog window appears which allows you to save a file.

    Share

Page