Devexress XPO xpPageSelector 使用

在官网找到的。在这里做个备注。

        private void simpleButton1_Click(object sender, EventArgs e)
        {
            if (xpPageSelector1.CurrentPage == 0) return;
            xpPageSelector1.CurrentPage--;
            UpdateLabel();
        }

        private void UpdateLabel()
        {
            labelControl1.Text = string.Format("第 [{0}]页   共 【{1}】页", xpPageSelector1.CurrentPage+1,
                xpPageSelector1.PageCount);
        }

        private void simpleButton2_Click(object sender, EventArgs e)
        {
            if (xpPageSelector1.CurrentPage == xpPageSelector1.PageCount - 1) return;
            xpPageSelector1.CurrentPage++;
            UpdateLabel();
        }
时间: 2024-11-05 16:05:24

Devexress XPO xpPageSelector 使用的相关文章

DevExpress ASP.NET 使用经验谈(2)-XPO对象的使用(Save操作)

接下来,我们通过一个控制台应用程序,介绍XPO对象的保存操作. 图一 添加新项目 图二 选择项目类型为控制台应用程序 查看生成的Program.cs代码文件,代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DevConsole { class Program { static voi

如何为CriteriaOperator过滤对象转换为lambda表达式,即:linq to xpo的动态where语句

How to convert the CriteriaOperator to a lambda expression, so, the latter expression can be used in the IQueryable source using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using Sys

用xpo实现dc技术的关键点-XPO是如何处理接口类型与真实类型的对应关系的

https://www.devexpress.com/Support/Center/Question/Details/Q487000/xpodatamodel-and-model-interfaces 代码来自于上面的网址,这个代码功能是xpo解析类型信息时,可以有个中转. 这也成了xaf中dc机制的一个关键点,即,接口信息需要有一个真实的对应类型信息才行. 也说是说,接口类型只是一个公开给程序员的信息,ta必须对应一个真实的classinfo,这个classinfo用于xpo解析真实的表\字段

关于 xpo 修改字段值,提交成功后,却没有保存到数据库中的一个原因。

xaf项目中,遇到一个奇怪的现象,在控制器中,修改了当前视图的对象的字段之后, 执行ObjectSpace.CommitChanges();成功,没有任何异常, 调试观察字段的值的确已经改变,但是却没有成功提交到数据库中. 经排查,是xpo类中 override 了 OnChanged(string propertyName, object oldValue, object newValue) 函数,但函数中没有执行 base.OnChanged(propertyName, oldValue,

How to: Create a Business Model in the XPO Data Model Designer

How to: Create a Business Model in the XPO Data Model Designer This topic provides step-by-step instructions on how to use the XPO Data Model Designer in XAF applications. We will create a simple business model consisting of two objects - Employee an

DevExpress ASP.NET 使用经验谈(1)-XPO模型的创建

原文:DevExpress ASP.NET 使用经验谈(1)-XPO模型的创建 这个系列通过一些简单例子循序渐进,介绍DevExpress ASP.NET控件的使用.先来介绍一下XPO的使用,安装的DevExpress版本为DXperienceUniversal-12.2.4,使用Visual Studio 2012+Sql Server2005. 什么是XPO? XPO 是 eXpress Persistent Objects的缩写,它是DevExpress公司推出的一个运行在.NETFram

DevExpress ASP.NET 使用经验谈(2)-XPO对象的使用(使用默认数据连接)

原文:DevExpress ASP.NET 使用经验谈(2)-XPO对象的使用(使用默认数据连接) 接下来,我们通过一个控制台应用程序,介绍XPO对象的保存操作. 图一 添加新项目 图二 选择项目类型为控制台应用程序 查看生成的Program.cs代码文件,代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;

如何产生 XPO 的WCF服务中间层

如何产生 XPO 的WCF服务中间层?  参考有关文章: 1.How to implement a distributed object layer service working via WCF https://www.devexpress.com/Support/Center/Example/Details/E5072/how-to-implement-a-distributed-object-layer-service-working-via-wcf 2. 原文地址:https://www

XPO - Web API and OData V4 支持

XPO - Web API and OData V4 支持: https://community.devexpress.com/blogs/xpo/archive/2018/07/05/xpo-web-api-and-odata-v4-support.aspx https://community.devexpress.com/blogs/xpo/archive/2018/05/21/xpo-free-of-charge-in-v18-1.aspx 原文地址:https://www.cnblogs