Click here to Skip to main content
15,896,111 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.2K   7K   80  
This article introduces FulcrumWeb RAD Framework - A Silverlight UI Engine to build user friendly database driven applications
/********************************************************************
 *  FulcrumWeb RAD Framework - Fulcrum of your business             *
 *  Copyright (c) 2002-2009 FulcrumWeb, ALL RIGHTS RESERVED         *
 *                                                                  *
 *  THE SOURCE CODE CONTAINED WITHIN THIS FILE AND ALL RELATED      *
 *  FILES OR ANY PORTION OF ITS CONTENTS SHALL AT NO TIME BE        *
 *  COPIED, TRANSFERRED, SOLD, DISTRIBUTED, OR OTHERWISE MADE       *
 *  AVAILABLE TO OTHER INDIVIDUALS WITHOUT EXPRESS WRITTEN CONSENT  *
 *  AND PERMISSION FROM FULCRUMWEB. CONSULT THE END USER LICENSE    *
 *  AGREEMENT FOR INFORMATION ON ADDITIONAL RESTRICTIONS.           *
 ********************************************************************/

namespace Framework.Metadata
{
  public class CxWinControlNames
  {
    // Windows control types
    public const string WIN_CONTROL_TEXT = "text";
    public const string WIN_CONTROL_CHECKBOX = "checkbox";
    public const string WIN_CONTROL_SPIN = "spin";
    public const string WIN_CONTROL_CALC = "calc";
    public const string WIN_CONTROL_DATE = "date";
    public const string WIN_CONTROL_MEMO = "memo";
    public const string WIN_CONTROL_MEMOPOPUP = "memopopup";
    public const string WIN_CONTROL_HTML = "html";
    public const string WIN_CONTROL_COMBOEDIT = "comboedit";
    public const string WIN_CONTROL_DROPDOWN = "dropdown";
    public const string WIN_CONTROL_DROPDOWNIMAGE = "dropdown_image";
    public const string WIN_CONTROL_DROPDOWNIMAGEONLY = "dropdown_imageonly";
    public const string WIN_CONTROL_LOOKUP = "lookup";
    public const string WIN_CONTROL_LOOKUP_MULTI = "lookup_multi";
    public const string WIN_CONTROL_LOOKUP_SELECT = "lookup_select";
    public const string WIN_CONTROL_TIME = "time";
    public const string WIN_CONTROL_HYPERLINK = "hyperlink";
    public const string WIN_CONTROL_HYPERLINK_EDIT = "hyperlinkedit";
    public const string WIN_CONTROL_HYPERLINK_EDIT_FILE = "hyperlinkeditfile";
    public const string WIN_CONTROL_EMAIL = "email";
    public const string WIN_CONTROL_IMAGE = "image";
    public const string WIN_CONTROL_IMAGEPOPUP = "imagepopup";
    public const string WIN_CONTROL_BUTTONEDIT = "buttonedit";
    public const string WIN_CONTROL_BUTTONTEXTEDIT = "buttontextedit";
    public const string WIN_CONTROL_COLOR = "color";
    public const string WIN_CONTROL_COLOR_NOTEXT = "color_notext";
    public const string WIN_CONTROL_FILE = "file";
    public const string WIN_CONTROL_PERCENT = "percent";
    public const string WIN_CONTROL_MEMO_BUTTON_LABEL = "memo_buttonlabel";
    public const string WIN_CONTROL_EMAILADDRESSBUTTONEDIT = "emailaddressbuttonedit";
    public const string WIN_CONTROL_CALCULABLETEXTEDIT = "calculabletextedit";
    public const string WIN_CONTROL_DATASIZEEDIT = "datasize_edit";
  }
}

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