Click here to Skip to main content
15,893,487 members
Articles / Desktop Programming / XAML

A Sample Silverlight 4 Application Using MEF, MVVM, and WCF RIA Services - Part 1

Rate me:
Please Sign up or sign in to vote.
4.84/5 (108 votes)
7 Jul 2011CPOL9 min read 2.1M   30.9K   298  
Part 1 of a series describing the creation of a Silverlight business application using MEF, MVVM Light, and WCF RIA Services.
<UserControl x:Class="IssueVision.Client.Home"
    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">
    <StackPanel>
        <TextBlock Text="Home" Style="{StaticResource HeaderTextStyle}" />
        <TextBlock TextWrapping="Wrap" Text="Welcome to the IssueVision!  This application can be used to track issues (e.g. bugs, work items, spec defects) across a project.  It supports assigning issues to people registered with the system as well as communicating data about issues teamwide." Margin="0,4" />
        <TextBlock TextWrapping="Wrap" Text="To begin, choose one of the options from the menu to add issues to the database, view all of the issues in the database, or review issues assigned to you.  You can also view reports about your issues and print their summaries." Margin="0,4" />
    </StackPanel>
</UserControl>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer (Senior)
United States United States
Weidong has been an information system professional since 1990. He has a Master's degree in Computer Science, and is currently a MCSD .NET

Comments and Discussions