devexpress

Show message in empty cells in GridView

狂风中的少年 提交于 2019-11-30 18:59:13
问题 I'm importing GridView from excel I need to show a message near every empty cell to give the user information about what it should be writing.. void simpleButton1_Click(object sender, System.EventArgs e) { string[] msg = new string[60]; string[] error = new string[400]; for (int i = 0; i < gridView3.RowCount ; i++) { System.Data.DataRow Rows = gridView3.GetDataRow(i); string cellvalue = Rows[0].ToString(); if (cellvalue == "") { msg[0] = "Missing 'First Name'"; error[i] = msg[0] + " - "; }

NetFx40_LegacySecurityPolicy in design-time mode

自作多情 提交于 2019-11-30 11:01:15
Is there any way to make legacy design-time code execute with NetFx40_LegacySecurityPolicy switched on? More specificaly, is there any way to make DevExpress 8.2 winforms designer work in VisualStudio 2010? I got errors due to this issue and found no help about design-time mode, just about run-time: <runtime> <NetFx40_LegacySecurityPolicy enabled="true"/> </runtime> How should I fix problems with winforms designer? Thomas Just add this <NetFx40_LegacySecurityPolicy enabled="true"/> into your VS2010 DevEnv configuration file , you'll find it in C:\Program Files (x86)\Microsoft Visual Studio 10

DevExpress .NET界面示例集锦

删除回忆录丶 提交于 2019-11-30 10:16:11
DevExpress Demo示例展示:仿Office的Winforms界面框架 DevExpress Demo示例展示:高性能ASP.NET界面开发框架 | 附在线演示 DevExpress Demo示例展示:令人惊艳的WPF界面框架 | 附安装程序 DevExpress Demo示例展示:高交互的Silverlight界面开发框架 | 附在线演示 DevExpress Demo示例展示:ASP.NET MVC GridView强悍的数据处理 | 附在线演示 DevExpress Demo示例展示:ASP.NET MVC报表无与伦比的设计时体验 | 附在线演示 DevExpress Demo示例展示:ASP.NET MVC图表强大的数据处理 | 附在线演示 DevExpress Demo示例展示:ASP.NET MVC Pivot Table | 附在线演示 DevExpress Demo示例展示:支持响应式的导航控件 | 附在线演示 DevExpress Demo示例展示:媲美Excel的电子表格控件| 附在线演示 DevExpress Demo示例展示:所见即所得的富文本编辑器 | 附在线演示 DevExpress Demo示例展示:仿Office界面的日历日程控件 | 附在线演示 DevExpress Demo示例展示:全新的Windows 10 UWP控件 | 附在线演示

DevExpress v18.1新版亮点——ASP.NET篇(三)

ぐ巨炮叔叔 提交于 2019-11-30 09:07:18
用户界面套包DevExpress v18.1日前终于正式发布,本站将以连载的形式为大家介绍各版本新增内容。本文将介绍了DevExpress ASP.NET v18.1 的新功能,快来下载试用新版本! 点击下载>> Rich Editor Control 支持Input Method Editor(IME) Input Method Editor (IME)允许您使用Latin键盘输入日语,中文,韩语和Tigrinya符号,当最终用户将桌面密钥输入切换为支持的语言时,将启用IME。 目录 在此版本中,添加了对交互式目录的支持。最终用户现在可以立即移动到文档中的特定位置。 支持以下表格: Table of Contents Table of Figures Table of Tables Table of Equations 您可以使用Rich Editor的Ribbon UII添加/更新表并标记其条目,新的API提供了许多管理交互式表格的选项。 Table AutoFit 表格现在可以自动调整列大小,以适应内容或文档窗口。 AutoCorrect ASP.NET WebForms和MVC Rich Text Editor附带对自动更正的支持,您可以使用自动更正来修复大小写错误、创建数字列表、超链接和电子邮件,以及自动插入符号和其他文本。 Stateless Mode

Winform中对DevExpress的RadopGroup的Description、Value、Tag、Text的理解与使用

╄→尐↘猪︶ㄣ 提交于 2019-11-30 08:18:11
原文: Winform中对DevExpress的RadopGroup的Description、Value、Tag、Text的理解与使用 场景 Winform中实现读取xml配置文件并动态配置ZedGraph的RadioGroup的选项: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/100540708 在上面实现了将RadioGroup的选项根据配置文件动态配置后, 需要根据代码生成RadioGroup的item并获取选中item的值。 注: 博客主页: https://blog.csdn.net/badao_liumang_qizhi 关注公众号 霸道的程序猿 获取编程相关电子书、教程推送与免费下载。 实现 一个RadioGroup每一个选项都是一个RadioGroupItem选项。 我们在使用代码生成一个RadioGroup时,需要设置每个Item展示时显示的值以及选中时获取的值。 item.Description 就是具体每个item选中的内容。 item.Value 就是每个item的value值。 item.Tag 是用来存取额外的值。 官方解释: Gets or sets an object that contains custom data for the current

The type X in Y conflicts with the imported type X in Z [closed]

天涯浪子 提交于 2019-11-30 08:02:40
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 6 years ago . I have the following warning on a interface : The type 'DevExpress.Data.Browsing.Design.IColumnImageProvider' in c:\Users[MyUser]\Documents\Visual Studio 2013\Projects\MyProject\MyProject\ReportFiles\CustomReportFieldListIcons.cs conflicts with the imported type 'DevExpress.Data

How far did DevExpress get with Javascript refactoring?

左心房为你撑大大i 提交于 2019-11-30 06:53:47
Over a year ago, I remember watching one of DevExpress evangelists previewing or at least promoting rich Javascript refactoring (beyond just limited intellisense) within the Visual Studio shell, I recall part of CodeRush/DevExpress product line. I was excited. On checking today (lmgtfy) I can find only very very limited reference to it, just one small italtic line about beta in product description, no videos, no blog posts, no community buzz. Was it dropped? Vapourware? Poor implementation that they dont even promote it? With Javascript arguably the most popular programming language ever and

Rowcommand do not fire after clicking button

与世无争的帅哥 提交于 2019-11-30 04:04:58
问题 I have already find out the solution, i just want to post it so this may be useful for some people This is the button that use command <dxwgv:ASPxGridView ID="gdvxUsers" runat="server" AutoGenerateColumns="False" Width="100%" KeyFieldName="UserName" onrowcommand="gdvxUsers_RowCommand"> <Columns> <dxwgv:GridViewDataTextColumn Caption="Edit" VisibleIndex="0" Width="0px"> <DataItemTemplate> <asp:ImageButton ID="imbEdit" runat="server" CommandName = "Edit" ImageUrl="~/images/icon/Edit-icon.png"

VCL界面开发必备装备!DevExpress VCL v19.1.5你值得拥有

蓝咒 提交于 2019-11-30 03:49:40
DevExpress VCL Controls 是 Devexpress公司旗下最老牌的用户界面套包。所包含的控件有:数据录入,图表,数据分析,导航,布局,网格,日程管理,样式,打印和工作流等,让您快速开发出完美、强大的VCL应用程序!DevExpress广泛应用于ECM企业内容管理、 成本管控、进程监督、生产调度,在企业/政务信息化管理中占据一席重要之地。 【适用范围】:Delphi / C++Builder XE2 / XE3 / XE4 / XE5 / XE6 / XE7 / XE8 / XE10 , Embarcadero Delphi , C++Builder 10 Seattle DevExpress VCL Controls v19.1.5下载 具体更新内容如下: 此列表包含v19.1.6中已解决的所有问题。 ExpressBars Suite T810422 - 当bar manager使用任何内置的外观和样式重绘绘制工具栏时,按钮图标会闪烁,除开原生样式 T810253 - Ribbon - 如果系统DPI值不是96,则按键提示将其字体大小加倍 T808969 - Ribbon - TdxCustomRibbonGalleryItem后代 - 图库被错误地绘制来响应不会改变其大小的内容修改 T805726 - TcxBarEditItem -

DevExpress 控件中设置分隔符

蓝咒 提交于 2019-11-30 02:22:42
原文: DevExpress 控件中设置分隔符 版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。 本文链接: https://blog.csdn.net/ghs79/article/details/50234189 在Delphi的标准菜单上设置分隔符是一件很简单的事,无论是设计期还是运行期动态生。但是DEV控件却不好使用,下面简单说说如何使用。 1、设计期:右键店要设置分隔符的按钮,有‘begin a Group’,点一下。 2、运行期:dxBarLargeButton3.Links[0].BeginGroup := True; //增加分隔符。会在这个按钮前添加一条分隔线。 运行期动态生成的核心代码如下: var DXTab: TdxRibbonTab; DxBar: TdxBar; //Dxbtn: TdxBarButton; Dxbtn: TdxBarItemLink; DxTabGrp: TdxRibbonTabGroup; begin DXTab := dxRibbon1.Tabs.Add; DXTab.Caption := tmpGroupStr; DxBar := dxBarManager1.AddToolBar(); DxBar.Caption := tmpGroupStr; DXTab.AddToolBar