Click here to Skip to main content
15,884,298 members
Articles / Web Development / ASP.NET

Using Silverlight in Enterprise: RAD of User Friendly Database Access

Rate me:
Please Sign up or sign in to vote.
4.81/5 (19 votes)
31 Jul 2009CPOL8 min read 58.1K   7K   81  
This article introduces FulcrumWeb RAD Framework - A Silverlight UI Engine to build user friendly database driven applications
<UserControl x:Class="Framework.Silverlight.Client.CxDialog"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    xmlns:Client="clr-namespace:Framework.Silverlight.Client" 
     
    >
    <Border BorderThickness="1, 0, 1, 1" BorderBrush="Black" x:Name="m_Border" CornerRadius="2">
        <Grid x:Name="LayoutRoot" Background="White" >
            <Grid.RowDefinitions>
                <RowDefinition x:Name="m_captionRow" Height="auto" ></RowDefinition>
                <RowDefinition x:Name="m_bodyRow" Height="auto" ></RowDefinition>
                <RowDefinition x:Name="m_bodyRow2" Height="auto" ></RowDefinition>
                <RowDefinition x:Name="m_buttonsRow" Height="auto" ></RowDefinition>
            </Grid.RowDefinitions>

            <Client:CxDialogTitle x:Name="m_Title" Height="30"></Client:CxDialogTitle>

            <Grid x:Name="m_ButtonsGrid" Grid.Row="3">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="*"/>
                    <ColumnDefinition Width="auto"/>
                </Grid.ColumnDefinitions>

                <StackPanel
                    Grid.Column="1" 
                    x:Name="m_btnsStack" 
                    Orientation="Horizontal"
                    Margin="0, 5, 5, 0"></StackPanel>
                
            </Grid>
        </Grid>
    </Border>
</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
Ukraine Ukraine
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions