delphi xe7 fmx 复制到剪切板

来源:互联网 发布:js 中隐藏控件 编辑:程序博客网 时间:2024/06/04 23:12
unit Unit1;interfaceuses  System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, System.Rtti,  FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls, FMX.Platform;type  TForm1 = class(TForm)    Button1: TButton;    procedure Button1Click(Sender: TObject);  private    { Private declarations }  public    { Public declarations }  end;var  Form1: TForm1;implementation{$R *.fmx}procedure TForm1.Button1Click(Sender: TObject);var  Clipboard: IFMXClipboardService;  //  FMX.Platform  Value: TValue; // System.Rttibegin  if TPlatformServices.Current.SupportsPlatformService(IFMXClipboardService,IInterface(Clipboard)) then  begin    Value := TValue.From('http://jondy.net');    Clipboard.SetClipboard(Value);  end;end;end.

0 0
原创粉丝点击