摘要:
// /// 导出按钮 /// /// /// private void FrmAppItem_F9ClickHandler(object sender, EventArgs e) { string strName = ""; try ... 阅读全文
摘要:
// /// 导出按钮 /// /// /// private void FrmAppItem_F9ClickHandler(object sender, EventArgs e) { string strName = ""; try ... 阅读全文
摘要:
gridView1.ExportToXlsx("SampleStock.xlsx"); if (true) { DevExpress.XtraEditors.XtraMessageBox.Show("导出成功,请在程序目录中打开SampleStock.xlsx"); } ... 阅读全文
摘要:
本文以DevExpress 11.1.8举例 必须满足几个条件 1、 必须有DXperience相应版本的全部源代码SourceCode。把全部源代码复制到X:\Program Files\DevExpress XXX\Components\Sources目录。目标目录的默认位置是在C:\Program Files\DevExpress 20XX\Components\Sources(其中X.X为... 阅读全文
摘要:
分类 运算符 操作 操作数 结果类型 范例 算术运算符 + 加 整数,实数 整数,实数 X + Y - 减 整数,实数 整数,实数 Result - 1 * 乘 整数,实数 整数,实数 P * InterestRate / 实数除 整数,实数 实数 X / 2 div 整数除 整数 整数 Total div UnitSize mod 取模 整数 整数 Y mod 6 +(一元... 阅读全文
摘要:
Windows 数据类型 Delphi 数据类型 描述 LPSTR PAnsiChar 字符串指针 LPCSTR PAnsiChar 字符串指针 DWORD LongWord 整数 BOOL LongBool 布尔型 PBOOL ^BOOL 指向布尔值的指针 PByte ^Byte 指向字节值的指针 PINT ^Integer 指向整数值的指针 PSingle ^S... 阅读全文
摘要:
长长的列表文字类型文件 分类 范围 字节 备注 简单类型 序数 整数 Integer -2147483648 .. 2147483647 4 有符号32位 Cardinal 0 .. 4294967295 4 无符号32位 Shortint -128 .. 127 1 有符号8位 Smallint -32768 .. 32767 2 有符号16位 Longint -214748... 阅读全文
摘要:
添加引用: 使用NuGet,命令:install-package Newtonsoft.Json 实体类: public class Book { public string BookID { get; set; } public DateTime PublishDate { get; set; } public decimal Price ... 阅读全文
摘要:
一、如何解决单击记录整行选中的问题 View->OptionsBehavior->EditorShowMode 设置为:Click
二、如何新增一条记录
(1)、gridView.AddNewRow() (2)、实现gridView_InitNewRow事件
三、如何解决GridControl记录能获取而没有显示出来的问题
gridView.populateColumns(); 四、如何让行... 阅读全文
摘要:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace C04委托的简单使用
{ public delegate void SayHi(); class Program {
... 阅读全文
摘要:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.W... 阅读全文
|