The links below provide comprehensive information on using DevExpress WinForms products. They contain a detailed description of the products API and also provide many examples with step-by-step instructions, screenshot images and source code (C# and Visual Basic) on using these products in real-life applications.

Topics in this section:

The following libraries and controls are included in the DXperience WinForms Suite:

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Common Concepts

DevExpress Windows Forms controls share many common features. They use the same approaches to control the look and feel settings, data binding, same approaches to format values and localize resources, etc. In this section, you will find documents that describe common features related to all DevExpress Windows Forms products.

DevExpressWindows窗体控件共享很多通用特性。它们使用相同方法控制外观和样式设置,数据绑定,相同的方法格式化数值和本地化资源等。这一节中,你将看到一些描述通用特性的文档,这些特性与所有DevExpress窗体产品产品都相关。

This help system contains the following sections:

帮助系统包含如下部分

------------------------------------------

Concepts

--------------------------------------------------------------------

Windows 8 UI - Getting Started

This tutorial will guide you through 7 steps of creating Windows 8-inspired applications. You will find everything required: from general project settings and creating application hierarchy to customizing and creating animated tiles. Every following step is based on the previous one. After completing these short steps you will be able to start building your own stunning streamlined applications that completely match Windows 8 concepts.

If tiles are more than enough for you, use a Tile Control component. However, if you seek for a tool to build entire Windows 8-styled applications that are much more than just tiles, we recommend using the Document Manager component.

--------------------------------------------------------------------------------------------------------------------------------------------------------

Step 1 - Creating a Project. General Settings

Windows 8UI开始

Start Microsoft Visual Studio and create a new Windows Forms Application. Following Windows 8 concepts, our application should run in the full-screen mode, so set the main application form's FormBorderStyle property to None and the WindowState property to Maximized.

启动MS Visual Studio新建一窗体应用程序。沿行Windows  8概念,应用程序在全屏模式下运行,所以设置程序主窗口的FormBorder Style属性为None,Window State 属性为Maximized。

Add the DocumentManager component from the toolbox. By default, it appears with the Tabbed View applied. Change the current View to the Windows UI View. To do so, call the DocumentManager's smart tag and click the corresponding link.

从工具箱中添加DocumentManager组件(10.2版本没找到)。默认以Tabbed View标签视图形式显示。改变当前视图为Windows UI视图。

Now, call the Document Manager Designer via the same smart tag.

All the following steps are performed via this Designer (see the Designer topic to learn more). Switch to the Documents section and create 6 new Documents via the 'Add New Document' button.

Documents are main DocumentManager's units. They can wrap any control or form to display your data within. You can learn more in the Documentstopic. The Documents we have just added are empty at this time, so the application will not run properly. We will set their content in Step 5. Now let's proceed to the next step - Tiles Customization.

一些DevExpress控件概况!!!!主要DocumentManager.WindowsUIView.Tile的更多相关文章

  1. DevExpress控件学习总结(转)

    DevExpress控件学习总结   1.Navigation & Layout 1.1 Bar Manager 如果想在窗体或用户控件(user control)上添加工具条(bars)或弹 ...

  2. DevExpress控件的GridControl控件小结

    DevExpress控件的GridControl控件小结 (由于开始使用DevExpress控件了,所以要点滴的记录一下) 1.DevExpress控件组中的GridControl控件不能使横向滚动条 ...

  3. DevExpress控件安装、汉化使用教程

    前言 DevExpress是一个庞大的控件库,也很是好用(没用过,听说),但是要收费. 网上关于DevExpress的教程满天飞,我找了一下午也没找到正确的安装.简单实用教程,还是自己摸索吧. 自己动 ...

  4. 在Winform开发框架中,利用DevExpress控件实现数据的快速录入和选择

    在实际的项目开发过程中,有好的控件或者功能模块,我都是想办法尽可能集成到我的WInform开发框架中,这样后面开发项目起来,就可以节省很多研究时间,并能重复使用,非常高效方便.在我很早之前的一篇博客& ...

  5. DevExpress控件使用经验总结- GridView列表行号显示操作

    DevExpress是一个比较有名的界面控件套件,提供了一系列的界面控件套件的DotNet界面控件.本文主要介绍我在使用DevExpress控件过程中,遇到或者发现的一些问题解决方案,或者也可以所示一 ...

  6. DevExpress控件开发常用要点(项目总结版)

    使用DevExpress控件来做项目开发已经有很长一段时间了,在摸索开发到客户苛刻要求的过程中,其中碰到过很多问题需要解决的,随着一个个问题的解决,也留下很多对DevExpress控件的使用经验及教训 ...

  7. DevExpress控件-- Gridcontrol合并表头

    写在前面的话: 在园子里逛了有一段时间了,一直想写点东西,但苦于自己的水平有限,生怕写出来的东西浪费了读者的时间.楼主有幸参加了公司DevExpress控件的培训,独乐乐不如众乐乐,特附上Demo以飨 ...

  8. DevExpress控件-GridControl根据条件改变单元格/行颜色--转载

    DevExpress控件-数据控件GridControl,有时我们需要根据特定条件改变符合条件的行或者单元格颜色达到突出显示目的,现在动起鼠标跟我一起操作吧,对的,要达到这个目的您甚至都不用动键盘. ...

  9. 【转】DevExpress控件安装

    原文链接: DevExpress控件安装.汉化使用教程 - 田园里的蟋蟀 学习网址: 1.DevExpress控件中文网 2.DevExpress控件中文网使用教程 3.DevExpress控件使用经 ...

随机推荐

  1. C语言的本质(29)——C语言与汇编之寄存器和寻址方式

    x86的通用寄存器有eax.ebx.ecx.edx.edi.esi.这些寄存器在大多数指令中是可以任意选用的,比如movl指令可以把一个立即数传送到eax中,也可传送到ebx中.但也有一些指令规定只能 ...

  2. 栈的C数组实现

    栈是一种先进后出的数据结构.栈的基本操作包括:入栈,出栈,初始化栈,清空栈,遍历栈. C代码如下: #include <stdio.h> #define MaxSize 20 typede ...

  3. POJ 1724 最短路费用限制

    迪杰斯塔拉裸题 最大花费 n个点 m条有向边 起点终点 路径长度 路径花费 问:在花费限制下,最短路径的长度 #include <iostream> #include <string ...

  4. Reverse Key Indexes反向索引

    Reverse Key Indexes反向索引A reverse key index is a type of B-tree index that physically reverses the by ...

  5. HDU 5785 Interesting

    题目: 大概说给一个字符串,找到其所有子串[i...k]满足它是由两个回文串拼成的,求Σi*k. 分析: 用val[1][i]表示以i结尾的回文串的起始位置的和val[0][i]表示以i起始的回文串的 ...

  6. UVA 10570 Meeting with Aliens

    题意: N个外星人围成一桌坐下,有序的排列指N在N-1与N+1中间,现在给出一个序列,问至少交换几次可以得到有序的序列. 分析: 复制一遍输入序列,放在原序列之后.相当于环.通过枚举,可以把最小交换次 ...

  7. C#根据函数名称执行对应的函数

    using System; using System.Collections.Generic; using System.Reflection; namespace test { public cla ...

  8. WPF基础

    1.Sender 指的是被点击的控件.默认为object类. private void btnc1_Click(object sender, RoutedEventArgs e) { Button b ...

  9. IIS ,未能加载文件或程序集“System.Web.DataVisualization, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35”或它的某一个依赖项。系统找不到指定的文件。

    1.解决办法:安装MSChart.exe程序 图表控件,下载附件,以管理员身份运行安装.

  10. Excel 用row()函数 在Excel中自动添加序号,

    1.如图 2.用if条件根据产品名称判断是否有值进而序号自动添加 If(G9="","",Row()-8)