3 Star 15 Fork 3

yangyxd / DorisDBCreateTable

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Unit2.pas 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
unit Unit2;
interface
uses
FMX.Platform,
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls,
UI.Base, FMX.Controls.Presentation, UI.Edit, UI.Standard, FMX.ListBox,
FMX.Menus;
type
TFrame2 = class(TFrame)
LinearLayout1: TLinearLayout;
LinearLayout2: TLinearLayout;
TextView1: TTextView;
edtModeKeys: TEditView;
TextView2: TTextView;
LinearLayout3: TLinearLayout;
TextView3: TTextView;
edtHashKeys: TEditView;
TextView4: TTextView;
edtBuckets: TEditView;
cbMode: TComboBox;
LinearLayout4: TLinearLayout;
cbName: TCheckBox;
tvHint: TEditView;
tvFields: TTextView;
PopupMenu1: TPopupMenu;
MenuItem1: TMenuItem;
edtGroup: TEditView;
TextView5: TTextView;
TextView6: TTextView;
edtReNum: TEditView;
procedure MenuItem1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
procedure CopyText(const Text: string);
end;
implementation
{$R *.fmx}
procedure TFrame2.CopyText(const Text: string);
var
FClipboardSvc: IFMXClipboardService;
begin
if not TPlatformServices.Current.SupportsPlatformService(IFMXClipboardService, IInterface(FClipboardSvc)) then
Exit;
FClipboardSvc.SetClipboard(Text);
end;
procedure TFrame2.MenuItem1Click(Sender: TObject);
begin
CopyText(cbName.Text);
end;
end.
1
https://gitee.com/yangyxd/doris-dbcreate-table.git
git@gitee.com:yangyxd/doris-dbcreate-table.git
yangyxd
doris-dbcreate-table
DorisDBCreateTable
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891