<?xml version='1.0' encoding='gb2312'?>
<rss version='2.0'>
<channel>
<title>DelphiBox</title>
<description>Delphi Box Articles</description>
<link>https://www.2ccc.com/</link>
<language>zh-cn</language>
<copyright>Copyright 2004, www.2ccc.com</copyright>
<webMaster>root@2ccc.com</webMaster>
<docs>https://www.2ccc.com/rss.asp</docs>
<generator>Rss Generator By www.2ccc.com</generator>
<item>
<title><![CDATA[收钱吧聚合支付接口演示]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6803</link>
<author>yanexp </author>
<description><![CDATA[收钱吧聚合支付

支持微信、支付宝、花呗、云闪付、信用卡等收款
收钱吧统一手续费率为0.38%，而微信和支付宝官方商用接口为手续费率为0.6%
收钱吧APP有实时交易记录及语音提示，次日0点后会自动申请打款到绑定银行卡
本程序主要演示微信和支付宝的收款和查询接口
也可支持网站下单，服务器异步回调通知等支付场景
如需要快速开通商户收款接口或合作代理的可联系QQ:4869911]]></description>
<comments>下载:349 浏览:15602</comments>
<pubDate>Sun, 14 Mar 2021 16:03:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[移动开发交互手势FireMonkey应用实例APP]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6798</link>
<author>chn1009 </author>
<description><![CDATA[    交互手势FireMonkey应用实例
    单位 唐山市开滦一中  作者 董艳凤

    使用说明：手机APP安装后，在枫叶处，手指右划或者是下划 出现歌曲，字的颜色改变。
    包含着apk文件，在Android手机上安装APP直接使用

   现在移动设备中手势是主要使用方式，手指类似鼠标光标(对于Windows和Mac OS X)使用。手势可以由一个控制的父母操纵包括层次结构和第一个处理手势等问题...。下面是具体一些说明 
1手势平台 Android 或者Mac OS
2如何使用手势
2.1启用标准手势
2.2实现OnGesture事件处理程序
2.3启用交互手势FireMonkey和VCL中支持的关键手势的区别
   标准动作:标准手势(向上、向下、三角形等)等同于Windows上的应用程序手势，也等同于Mac OS X和iOS上的多点触摸序列。在Windows上，标准手势是用一根手指，在Mac OS X上是用两根手指。手势完成后(用户抬起手指)，OnGesture项目被触发(如果一个标准手势被识别)。交互手势:交互手Mac OS X、iOS和Android上的手势。每次手指在触控表面上移动时，就会触发一个OnGesture项目。FireMonkey使用了上、下、左、右四种标准手势，相当于交互式滑动手势(在Mac OS X、iOS、Android和Windows 8上)。手势的平台势是多点触摸手势(缩放、旋转等)，相当于Windows上的系统手势，也相当于本主题描述桌面和移动平台的手势:所有桌面平台都支持手势。对于Windows触摸屏，即使手指离开屏幕，超出了预期控制的范围，手势仍然会被发送到该控制。所有的移动平台都支持交互手势。参见启用交互式手势。为了能够使用手势，控件必须有触控属性。下面的一个实例，大家可下载参考。

unit U1;

interface

uses
  System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
  FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
  System.Math.Vectors, FMX.MaterialSources, FMX.Controls3D, FMX.Objects3D,
  FMX.Viewport3D, FMX.Objects, FMX.Controls.Presentation, FMX.StdCtrls,
  FMX.Media, FMX.ScrollBox, FMX.Memo, FMX.Gestures;

type
  TForm1 = class(TForm)
    Text1: TText;
    Viewport3D1: TViewport3D;
    Rectangle3D1: TRectangle3D;
    TextureMaterialSource1: TTextureMaterialSource;
    TextureMaterialSource2: TTextureMaterialSource;
    TextureMaterialSource3: TTextureMaterialSource;
    Timer1: TTimer;
    Label1: TLabel;
    MediaPlayer1: TMediaPlayer;
    Button1: TButton;
    Button2: TButton;
    Button3: TButton;
    Label2: TLabel;
    GestureManager1: TGestureManager;
    Image1: TImage;
    procedure Timer1Timer(Sender: TObject);
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
    procedure Button3Click(Sender: TObject);
    procedure Viewport3D1Gesture(Sender: TObject;
      const [Ref] EventInfo: TGestureEventInfo; var Handled: Boolean);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;
   ii:integer;
implementation
uses
  IOUtils;
{$R *.fmx}
{$R *.LgXhdpiPh.fmx ANDROID}

procedure TForm1.Button1Click(Sender: TObject);
begin
  MediaPlayer1.FileName := TPath.GetDocumentsPath + PathDelim + 'wangshuiqian.mp3';
  MediaPlayer1.Play;

end;

procedure TForm1.Button2Click(Sender: TObject);
begin
MediaPlayer1.Stop;
end;

procedure TForm1.Button3Click(Sender: TObject);
begin
application.Terminate;
end;

procedure TForm1.Timer1Timer(Sender: TObject);
begin
Rectangle3D1.RotationAngle.Y :=random(1000);
Rectangle3D1.RotationAngle.X :=random(1000);
Rectangle3D1.RotationAngle.Z :=random(1000);
ii:=ii+1;
image1.Bitmap:=image1.MultiResBitmap[random(3)].Bitmap ;
label2.Position.Y:=label2.Position.Y-ii;
if  label2.Position.Y&lt;-410 then label2.Position.Y:=600;
end;

procedure TForm1.Viewport3D1Gesture(Sender: TObject;
  const [Ref] EventInfo: TGestureEventInfo; var Handled: Boolean);
var
  S: string;
begin
  if GestureToIdent(EventInfo.GestureID, S) then begin
   label1.TextSettings.FontColor:= TAlphaColorRec.yellow;
   MediaPlayer1.FileName := TPath.GetDocumentsPath + PathDelim + 'wangshuiqian.mp3';
   MediaPlayer1.Play;
   Handled := True;
  end;

end;

end.]]></description>
<comments>下载:249 浏览:14737</comments>
<pubDate>Thu, 10 Sep 2020 16:09:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[输入小写金额变大写金额]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6792</link>
<author>zhanliang1217 </author>
<description><![CDATA[输入小写金额变成大写汉字金额]]></description>
<comments>下载:117 浏览:7001</comments>
<pubDate>Sat, 27 Mar 2021 16:03:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[三步解决10.1,2升级到10.3.1启动界面显示横屏的问题]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6766</link>
<author>142857 </author>
<description><![CDATA[三步解决10.1,2升级到10.3.1启动界面显示横屏的问题
是delphiteacher的作品，我只是搬运工]]></description>
<comments>下载:42 浏览:9753</comments>
<pubDate>Sun, 03 Mar 2019 16:03:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[ZServer4D 云服务器中间件]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6765</link>
<author>kinglihui </author>
<description><![CDATA[  ZSERVER4D是一套高级通讯系统的地基平台，它偏向于开发工艺和多平台支持。支持运行平台Android,IOS,Win32/64,Linux,OSX,物联网IOT(任意版本的linux均能支持，包括树莓1-3代，香橙，高通，三星，小序列cpu mips linux) 支持编译器：FPC3.0.4以及DelphiXE10.2和以后的版本 并行计算支持HPC服务器，并行深度参数服务器可配置 良好支持轻量云主机，腾讯云，阿里云，亚马逊。
   我自己还没有时间来得及借鉴与学习。希能与需要的朋友一同分享学习。]]></description>
<comments>下载:334 浏览:23210</comments>
<pubDate>Tue, 19 Feb 2019 16:02:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[foxui界面完全适应win10 阴影]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6762</link>
<author>onlykingqc </author>
<description><![CDATA[最近比较空闲，所以写了部分界面组件
大家有兴趣可以看看
如有建议也欢迎告诉我]]></description>
<comments>下载:415 浏览:24654</comments>
<pubDate>Tue, 18 Dec 2018 16:12:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[屏幕取色器,支持FireMonKey颜色]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6761</link>
<author>ywo </author>
<description><![CDATA[以前会用到网上的PLAYCOLOR程序，来取屏幕颜色，后来用了DELPHI XE后，发现取过来的DELPHI颜色不对，DELPHI7里面用的是Tcolor, XE里面用的是
TAlphacolor,多了个透明度,所以用XE重新编了小程序，Fmx还在学习中,错误也是难免的,请多多原谅!

按CTRL键停止取色，确定当前颜色。]]></description>
<comments>下载:160 浏览:17117</comments>
<pubDate>Tue, 04 Dec 2018 16:12:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[OrangeUI 1.74 D10.1&D10;.1.2&D10;.2.2 包含安装文档和DEMO， XE10.2编译通过]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6760</link>
<author>ywo </author>
<description><![CDATA[通过OrangeUI，您可以快速及稳定的实现如下功能，并且全部免费：
1．APP主页九宫格菜单，在主流APP中经常能够见到，OrangeUI只需要一个控件，而不是Image和Label堆出来实现。
2．广告图片轮播功能，并且是可以跟随手指滑动切换，这是目前别的控件还做不到的。
3．列表ListView支持直接设置图片的URL，通过底层的多线程下载功能，可以轻松实现异步加载图片，并且不会感觉到卡顿。
4．列表框ListView自带下拉刷新、下拉加载的功能，在手机上加载2w条数据只需2秒。
5．APP上数据呈现以ListView为主，列表框ListView支持的设计面板模式，可以在设计面板上添加任意数目的控件，排列好布局，各种样式轻松搞定。
6．实现稳定的页面切换效果，让您的APP如原生般的用户体验(APP最注重的就是用户体验)。
7．各种通用的界面，如等待框，对话框，菜单框，拍照菜单框，选择框等。
8．可以快速生成IOS和Android平台下所用到的各种尺寸的程序图标和启动界面图片。
9．网上商城、好友聊天、新闻浏览、外贸验货、平板点单等示例，包含全部源码的。
10．可以手势切换的分页控件，加入到您的APP中可以极大的方便用户进行操作。
11．稳定灵活的Frame开发方案(发布会李维老师推荐)，可以很好的将复杂的主窗体分解成四、五个小页面，加快页面的截入速度，减少内存占用，并且按返回键自动返回上一页的处理，让你打造出高效的APP。
12．开源的微信接口、微博接口、阿里接口、支付宝支付、微信支付、推送功能源码，让你的APP更强大。
13．简单实用的图片HTTP上传下载客户端和服务端(IndyHttpServer)的示例源码。
14．发朋友圈、查看朋友圈的客户端和后台服务端(DataSnap)的示例源码。
15．按钮在ScrollBox上用手指滑动不会触发点击事件。
16．编辑框在ScrollBox上用手指滑动时不会触发输入事件，并已自动处理虚拟键盘显示/隐藏事件，不会挡住编辑框。
17．列表ListView支持在设计时添加Item并能即时预览到效果，目前自带和别的控件都做不到的。
18．OrangeUI的用户目前已经超过200名，用户开发的APP也不下百个，不少都上架到AppStore，腾讯应用宝等市场。
19．每个控件配备专门的DEMO和文档教程，使用起来更轻松。
20．提供专门的OrangeUI技术支持QQ群(群号：10900297)，也可以加我QQ452330643，提供专业的APP开发支持。
21．定期一至两个月更新一次，不断添加新的控件适应新的趋势，以及新的实用示例。]]></description>
<comments>下载:506 浏览:23438</comments>
<pubDate>Wed, 28 Nov 2018 16:11:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[delphi调用lua]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6758</link>
<author>142857 </author>
<description><![CDATA[lua是脚本语言，与许多开源开发库，可以用delphi调用lua]]></description>
<comments>下载:215 浏览:22191</comments>
<pubDate>Sun, 18 Nov 2018 16:11:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[delphi版mvc]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6757</link>
<author>142857 </author>
<description><![CDATA[delphi版mvc,采用webbroker技术，支持http.sys]]></description>
<comments>下载:189 浏览:22307</comments>
<pubDate>Sun, 18 Nov 2018 16:11:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[五笔打字游戏（保护森林）]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6751</link>
<author>cmd9x </author>
<description><![CDATA[一个小游戏，天上掉炸弹，下面是森林，炸弹上有一个一五笔简码的汉字，在炸弹掉到森林上时打字正确可以去掉，否则森林被毁]]></description>
<comments>下载:186 浏览:20427</comments>
<pubDate>Mon, 17 Sep 2018 16:09:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[五笔打字小游戏（二级简码考验时间到了）]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6750</link>
<author>cmd9x </author>
<description><![CDATA[小孩子老是玩电脑没节制，装上这个小游戏，每次出现1分钟，1分钟内打对多少个五笔二级简码，就延长多少分钟，运行中无法最小化，让小屁孩们抓耳挠腮。。。反正家里大人都会五笔。]]></description>
<comments>下载:111 浏览:16166</comments>
<pubDate>Mon, 17 Sep 2018 16:09:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[局域网/互联网时间校对工具]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6748</link>
<author>ywo </author>
<description><![CDATA[同一个文件可以做局域网时间服务端,也可以做客户端,或者互联网的时间校对工具,为方便自己使用可发,错误的地方请见谅!]]></description>
<comments>下载:502 浏览:22218</comments>
<pubDate>Thu, 05 Jul 2018 16:07:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[靖源图像扫描activex控件(webtwain)]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6721</link>
<author>hsj </author>
<description><![CDATA[是一款用来在网页中扫描图像的activex控件,支持所有支持twain接口的高速扫描仪/平板扫描仪,支持单张扫描，支持连续扫描,解决了部分扫描仪连续扫描内存溢出的问题，支持扫描图像切边、分割、旋转和格式化大小。无须其他dll支持，使用简单，让你无须关心复杂的twain接口命令，快速实现图像的扫描。可以用于asp、jsp、php、htm、asp.net等开发环境，也可以用于delphi、vb、vc、c#、pb等应用程序。]]></description>
<comments>下载:127 浏览:20640</comments>
<pubDate>Thu, 24 May 2018 16:05:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[获取硬盘序列号dll]]></title>
<link>https://www.2ccc.com/article.asp?articleid=6720</link>
<author>hsj </author>
<description><![CDATA[理论上讲，硬盘出厂序列号在全球都是唯一的，jyDisk.DLL 是一个标准的Windows动态链接库，它能够让您在你的程序中简单地获取硬盘出厂序列号。 jyDisk.DLL可以应用于各种流行的开发语言，比如Delphi, C++Builder, C#, Visual C++, Visual Basic, Visual Basic.NET, PowerBuilder等，示例为delphi7调用代码和c#调用代码. 
jyDisk.DLL特性
1.支持windows2000,xp及以上系统，支持64位操作系统，支持U盘/移动硬盘，不支持win98及以下操作系统。
2.仅需1个dll文件。
3.在win7/win8等系统下，无需管理员权限。
4.支持根据盘符获取硬盘的物理序号，支持获取磁盘类型。
5.支持获取硬盘温度、smart信息]]></description>
<comments>下载:245 浏览:23106</comments>
<pubDate>Wed, 09 May 2018 16:05:00 GMT</pubDate>
</item>
</channel></rss>