Recommended

Skip Navigation LinksHome / Articles / Learn / QuickStarts

QuickStarts

+
Page 
Items Resolution

  • 11 comments  /  posted by  Alexey Zakharov  on  May 28, 2009 (more than a year ago)

    1. Introduction

    Currently Silverlight supports two ways of duplex communication: sockets and WCF polling duplex services. I was really impressed by the simplicity of using WCF polling duplex in Silverlight 3, but its responsiveness and scalability leaves much to be desired. On the opposite site we have sockets, which are rather tricky to use, but their responsiveness and scalability satisfy real world application requirements.

    In this article I’m going to introduce my SocketsLight framework, which should simplify the working with sockets by providing high level API over .NET sockets library.

    Share


  • 0 comments  /  posted by  Thanigainathan Siranjeevi  on  May 10, 2009 (more than a year ago)
    DomainUpDown control is one of the new controls available in the Silverlight 3 Toolkit which can be found in

    Silverlight Toolkit

    This control Represents a Windows spin box (also known as an up-down control) that displays string values.Help files for the assemblies are downloaded with them by default. This control belongs to the following namepsace.

    Namespace:  System.Windows.Forms
    Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

    The control is bound with a datasource collection.
    Share
  • 0 comments  /  posted by  Pencho Popadiyn  on  May 06, 2009 (more than a year ago)

    1. Introduction

    In the previous parts of the article I showed you the first two groups of patterns used in the Composite Application Library (CAL) – Composite User Interface patterns and Modularity patterns. In the final part I will show you the third group – Testability 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
  • Silverlight 3 Navigation API

    6 comments  /  posted by  Thanigainathan Siranjeevi  on  Apr 27, 2009 (more than a year 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.

    Read more ...
    Share
  • 1 comments  /  posted by  Pencho Popadiyn  on  Apr 21, 2009 (more than a year 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 (more than a year 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
  • 13 comments  /  posted by  Martin Mihaylov  on  Apr 13, 2009 (more than a year 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
  • 1 comments  /  posted by  Pencho Popadiyn  on  Apr 08, 2009 (more than a year 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
  • 4 comments  /  posted by  Martin Mihaylov  on  Mar 31, 2009 (more than a year 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
  • 18 comments  /  posted by  Martin Mihaylov  on  Mar 29, 2009 (more than a year 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

Page 
Help us make SilverlightShow even better and win a free t-shirt. Whether you'd like to suggest a change in the structure, content organization, section layout or any other aspect of SilverlightShow appearance - we'd love to hear from you! Need a material (article, tutorial, or other) on a specific topic? Let us know and SilverlightShow content authors will work to have that prepared for you. (hide this)