devexpress

How to Select row using checkedit gridcontrol devexpress? [closed]

混江龙づ霸主 提交于 2019-12-07 17:01:09
问题 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 4 years ago . i have a winfrom using C# in my coding , and i use gridcontrol devexpress 2010 to show data contact list. here is my form after select those list i get the value from gridcontrol that i select and press button OK to get it. I don't know the code. anyone can suggest me,....thanks

Changing Row Colours on DevExpress GridView

人走茶凉 提交于 2019-12-07 16:33:05
问题 I am trying to change the colour of a row to green in a devexpress gridview. When searching I found many examples of how to do this... in websites BUT this is a windows application. I cannot find any thing on a windows application so can someone please help me out a bit here. I simply just want to change the colour of a single row to green. Forgot to mention, its a C# application. Thanks for the help. 回答1: For changing the row colour in runtime handle the RowStyle event: public Color color1;

Winforms asynchronous loading large data?

烂漫一生 提交于 2019-12-07 15:29:41
问题 I just received a bug list for an old app developed yeah years ago and one of the things i need to sort out is the amount of time it takes to load data into one screen,of course, while the screen is frozen and unfortunately this is in WinForms .NET 4.5. The data is loaded into a WinForms DataGridView. I would like to find out if there is any way of loading this data using C# 5 async and await,while refreshing the grid to add the next set of data. It may be while scrolling or in the background

DevExpress v17.2新版亮点——CodeRush篇(三)

匆匆过客 提交于 2019-12-07 14:43:22
用户界面套包DevExpress v17.2日前终于正式发布,本站将以连载的形式为大家介绍各版本新增内容。本文将介绍了 CodeRush v17.2 的新功能,快来下载试用新版本! 点击下载>> 代码格式和清理 文档格式 通过文档格式化,您可以一步完成整个解决方案中代码格式化的各个方面配置。CodeRush的文档格式更加灵活,并提供比Visual Studio内置格式化功能更多的选项。 文档格式可以完全控制以下代码样式属性: Spacing Wrapping Line Breaks 这些格式选项是格式文档规则的一部分,可以选择将其应用作为代码清理的一部分。 您可以指定在代码清理选项页面上应用哪些规则。 您还可以将FormatDocument命令绑定到快捷方式,并使用它来处理独立于代码清理调用格式文档的功能。 项目范围代码清理 您现在可以为整个项目运行代码清理。 只需在解决方案资源管理器中右键单击要清理的项目,然后从上下文菜单中选择清理项目。 CodeRush清理项目,显示进度窗口。 Refactorings and Code Providers XPO Fields 我们已经为CodeRush Classic实现了基于XPO EasyFields社区插件的XPO字段功能。 当使用eXpress持久对象时,这非常有用,可让您根据现有类成员自动生成和更新XPO FieldsClass。

DevExpress v17.2新版亮点——CodeRush篇(二)

时光总嘲笑我的痴心妄想 提交于 2019-12-07 14:42:02
用户界面套包DevExpress v17.2日前终于正式发布,本站将以连载的形式为大家介绍各版本新增内容。本文将介绍了 CodeRush v17.2 的新功能,快来下载试用新版本! 点击下载>> 支持XAML 标记扩展中的XAML格式 新版本改进了XAML格式,并可以格式化标记扩展。 您现在可以: 只有超过指定的数字才能将参数分开。 您可以在参数计数上设置一个阈值,以确定是否发生参数分裂,并且还可以指定每行的最大参数数量。 将标记扩展参数与第一个参数对齐。 规范XML注释中的空白 我们添加了对XML注释中的空白进行规范化的功能。 Code Style 属性列表 我们添加了新的属性列表代码样式和代码清理规则,允许您将应用于单个成员的两个或多个单独属性合并到单个声明中。 语句中的大括号 我们在语句中添加了一个名为大括号的新代码样式规则。 CodeRush现在可以在可选的地方删除或要求(添加)块分隔符,例如围绕if块的单个子语句。 增强导航功能 删除标记的选项 我们扩展了Drop Marker功能,添加了放置选择标记的功能,然后再返回,在收集标记时恢复选择。 只需选择代码,然后使用Alt + Home删除标记。 要收集标记,请按Esc或Alt + End。 跳转到菜单中最近打开的项目 跳转到文件并跳转到符号窗口现在显示最近打开的项目。 从成员图标导航 您现在可以使用Member

C# - DevExpress XtraGrid - Master/Detail - Display Format

纵然是瞬间 提交于 2019-12-07 13:21:41
问题 Scenario I have a DevExpress XtraGrid. The data displayed is in a master/detail format, whereby clicking the '+' at the start of the row expands the detail for that master row. I have implemented this by binding the grids datasource to a dictionary of objects that contain their own Dictionary property (to hold the detail). Problem What I want to do is format the data in specific columns of the detail. However, I cannot get hold of the column, presumably because it is a sub-element of the

Javascript Error $(…).dxChart is not a function

烂漫一生 提交于 2019-12-07 06:58:43
I'm trying to display a dxChart with jQuery binding in an ASP.NET MVC project (with DevExpress). So I included the necessary scripts in the rootLayout: <script src="@Url.Content("~/Scripts/jquery-1.10.2.min.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/bootstrap

DevExpress v17.2新版亮点——CodeRush篇(一)

心已入冬 提交于 2019-12-07 00:27:24
用户界面套包DevExpress v17.2日前终于正式发布,本站将以连载的形式为大家介绍各版本新增内容。本文将介绍了 CodeRush v17.2 的新功能,快来下载试用新版本! 点击下载>> Unit Test Runner JavaScript Test Runner JavaScript Test Runner已经过测试版,您现在可以使用功能强大的CodeRush Test Runner为客户端JavaScript代码运行&调试测试。 我们的JavaScript test runner基于Karma并支持以下测试框架: Jasmine QUnit Mocha 从覆盖范围中排除 您现在可以使用*.runsettings文件从代码覆盖率分析中排除特定项目。 代码覆盖过滤 您现在可以创建代码覆盖率报表并将其应用于过滤器。例如,您可以创建一个仅显示测试覆盖率在1%和40%之间的方法的过滤器,如下所示: Microsoft Fakes CodeRush Test Runner现在支持Microsoft Fakes isolation框架。 Code Analysis 未使用的成员 我们添加了一个新的分析器来检测未使用的成员。 您还可以在代码编辑器(编辑器|所有语言|静态代码分析|突出显示未使用的成员)中配置这些成员的突出显示(例如,强调这些成员)。

DevExpress v17.2新版亮点—Analytics Dashboard篇(二)

女生的网名这么多〃 提交于 2019-12-07 00:27:11
用户界面套包DevExpress v17.2日前终于正式发布,本站将以连载的形式为大家介绍各版本新增内容。本文将介绍了Analytics Dashboard v17.2 的新功能,快来下载试用新版本! 点击下载>> Data Processing 性能增强 通过使用新的多线程算法进行数据聚合,我们改进了DevExpress Dashboard for .NET的内存数据处理功能。 Visual Studio集成 新的Visual Studio功能 DevExpress Dashboard在Visual Studio中包含一系列新选项。 包括: 预定义的模板允许您为WinForms和Web创建Dashboard Designer或Viewer应用程序。 创建设计时仪表板以便在DashboardViewer控件中显示直接的方式。 数据源配置向导允许您为仪表板提供来自现有项目数据源(如ADO.NET DataSet或Entity Framework)的数据。 可视化 在筛选元素中搜索 在此版本中,所有过滤元素(包括组合框,列表框和树视图)都包含搜索支持。 此新功能允许最终用户在多个记录中找到所需的条目。 网格仪表板项目 - 超链接支持 仪表板的网格项现在可以显示超链接,以便最终用户可以导航到与显示值相关的网页内容。 此功能可用于WinForms和Web平台。 ==============

DevExpress v17.2新版亮点—Windows 10篇

那年仲夏 提交于 2019-12-07 00:27:01
用户界面套包DevExpress v17.2日前终于正式发布,本站将以连载的形式为大家介绍各版本新增内容。本文将介绍了Windows 10 Controls v17.2 的新功能,快来下载试用新版本! 点击下载>> Grid Control Column Chooser Windows 10 Grid Column Chooser允许最终用户在运行时显示、隐藏和重新排序列。 基于属性的验证 DevExpress Windows10 Grid Control现在支持DataAnnotations属性。 Alternating Row Style 其他 Master-Detail模式 此版本包含Master-Detail Pattern导航布局,该功能可让您在应用程序中复制Windows 10 Mail应用程序的外观。 Svg图标调色板 您可以指定用于在应用程序中着色SVG图像的全局调色板。 另外,您可以将自定义调色板应用于单个图标并覆盖全局调色板指定的颜色。 =============================================================== DevExpress v17.2发布,更多精彩内容请持续关注DevExpress中文网! 扫描关注DevExpress中文网微信公众号,及时获取最新动态及最新资讯 来源: oschina 链接: