Recommended


Silverlight Hosting

Skip Navigation LinksHome / Articles / Learn / Samples

Samples

+
Page 
Items Resolution

  • 0 comments  /  posted by  Thanigainathan Siranjeevi  on  Jun 19, 2009 (2 weeks ago)

    I was working with one of the web application localization. I was searching with couple of translator's available with the web. The most popular of them are

    1. Google Translation Service

    2. Bing Translator Service

    I tried using the Google API for the web and it was pretty good. Then in recent times I came across Bing translator and tools link in them gave me the way to implement the Bing API. Bing is making a revolution in the search engines and so I liked to use that here.

    Following URL's are referred for this.

    Share


  • 6 comments  /  posted by  Alexey Zakharov  on  May 28, 2009 (1 month 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  Boyan Mihaylov  on  May 24, 2009 (1 month ago)

    Introduction

    These series of posts will help you when creating rich data forms with Silverlight 3 in your projects. Silverlight 3 introduces a new control, called DataForm. It enables various methods for display, edit, update and navigation through data. I my previous two articles I gave you a clear view of this new cool control. I showed you how easily you can bind an object or a collection of objects to a DataForm control and the whole bunch of stuff you can do with every data source.

    Share
  • 3 comments  /  posted by  Thanigainathan Siranjeevi  on  May 22, 2009 (1 month ago)

    Authentication and authorization plays a key role in the web world. Going distributed makes information sharing healthier. But only if it's allowed for the know contact it will be healthy. We can very well see this in the existing web world. We have the memberships and roles for ASP.Net web applications. In addition we also have forms authentication and NTLM authentication.

    Going smart client is always best. But considering security it has to be more secure since smart clients attract all the people they can be easily prey to security vulnerabilities.

    Share
  • 4 comments  /  posted by  Boyan Mihaylov  on  May 11, 2009 (1 month ago)

    Introduction

    These series of posts will help you when creating rich data forms with Silverlight 3 in your projects. Silverlight 3 introduces a new control, called DataForm. It enables various methods for display, edit, update and navigation through data. In my previous article I gave you a clear view of this new cool control. I showed you how easily you can bind an object or a collection of objects to a DataForm control and the whole bunch of stuff you can do with every data source.

    In this article I will show you how you can style your control.

    Share
  • 0 comments  /  posted by  Thanigainathan Siranjeevi  on  May 10, 2009 (1 month 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  Thanigainathan Siranjeevi  on  Apr 27, 2009 (2 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
  • 8 comments  /  posted by  Boyan Mihaylov  on  Apr 23, 2009 (2 months ago)

    Introduction

    Silverlight 2 has introduced many interesting features and controls but it misses something that Silverlight 3 makes possible –easily creating and manipulating rich data forms. These series of posts will help you when creating rich data forms in Silverlight 3 in your projects. Silverlight 3 introduces a new control, called DataForm. It enables various methods for display, edit, update and navigation through data.

    The DataForm control is like the DataGrid control in Silverlight 2. But while the DataGrid control is used to manipulate a list of items, the DataForm control focuses on the item itself.

    Share
  • 3 comments  /  posted by  Boyan Mihaylov  on  Apr 05, 2009 (3 months ago)

    Introduction

    Silverlight 3 beta is out and it introduces a great variety of new functionality. Tim Heuer has already published a guide to the new features in Silverlight 3.

    Element effects in Silverlight 2 are missing. This means that if you want to make your elements more attractive, you have to write your own effects. Silverlight.FX introduced a great number of effects and animations, which you can use. Nikhil Kothari has written a number of posts to show you the capabilities of this small but powerful framework.

    Share
  • 2 comments  /  posted by  Nikolay Raychev  on  Mar 25, 2009 (3 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="AnimationBackEase.MainPage"    
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"      
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"      
        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

Page