gpt4 book ai didi

delphi - 从 Microsoft 功能区执行命令?

转载 作者:行者123 更新时间:2023-12-03 15:33:38 30 4
gpt4 key购买 nike

感谢 this thread 中提供的帮助和建议,我使用 Microsoft Ribbon 框架创建了我的第一个非 Delphi 功能区.

遵循 guide A.Bouchez 在该线程中发布的内容我已经成功编译了我的项目并看到了 Microsoft Ribbon 的运行情况。

但是,执行命令时我似乎无法让功能区响应输入。

我总是使用 TActionManager 来管理我的事件,因此我所需要做的就是将每个 TAction 从 TActionManager 链接到功能区。按照上面链接的教程,我尝试了以下方法但无济于事:

// actNew is the name of a TAction set in the TActionManager
procedure TfrmMain.actNewExecute(Sender: TObject);
begin
ShowMessage('execute new event');
end;

procedure TfrmMain.CommandCreated(const Sender: TUIRibbon; const Command: TUICommand);
begin
inherited;

case Command.CommandId of
cmdNew: // cmdNew was defined in the Ribbon Designer
begin
// link the ribbon commands to the TActions
actNew.OnExecute(Command as TUICommandAction); // obviously will not work
end;
end;
end;

那么,如何将我的 TAction 分配到功能区?

谢谢。

最佳答案

我通过查看提供的示例找到了如何执行命令(不知道我是如何错过它们的!)。这些事件似乎必须独立于 TAction 来定义,所以我想这就是正确的方法。

可以通过在用于调用功能区命令的过程中链接 Actions OnExecute 处理程序,例如:

private
CommandNew: TUICommandAction;
procedure CommandNewExecute(const Args: TUICommandActionEventArgs);

procedure UpdateRibbonControls;
strict protected
procedure RibbonLoaded; override;
procedure CommandCreated(const Sender: TUIRibbon; const Command: TUICommand); override;

implementation

procedure TfrmMain.RibbonLoaded;
begin
inherited;

Color:= ColorAdjustLuma(Ribbon.BackgroundColor, -25, False);
UpdateRibbonControls;
end;

// set command states here
procedure TfrmMain.UpdateRibbonControls;
begin
if Assigned(CommandNew) then
CommandNew.Enabled:= True;
end;

// assign the commands
procedure TfrmMain.CommandCreated(const Sender: TUIRibbon; const Command: TUICommand);
begin
inherited;

case Command.CommandId of
cmdNew: // command id defined in the ribbon designer
begin
CommandNew:= Command as TUICommandAction;
CommandNew.OnExecute:= NewExecute;
end;
end;
end;

// command events
procedure TfrmMain.NewExecute(const Args: TUICommandActionEventArgs);
begin
actNew.OnExecute(nil); // < this is calling the event code from a TAction
end;

功能区框架内的 Samples 文件夹将更清楚地演示这一点。该框架可以在这里找到:http://www.bilsen.com/windowsribbon/index.shtml

关于delphi - 从 Microsoft 功能区执行命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6362734/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com