5 delphi ribbon ribbon-control
感谢本线程中提供的帮助和建议,我使用 Microsoft Ribbon 框架创建了我的第一个非 Delphi 功能区。
按照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;
Run Code Online (Sandbox Code Playgroud)
那么,如何将我的 TAction 分配到功能区?
谢谢。
小智 2
我通过查看提供的示例找到了如何执行命令(不知道我是如何错过它们的!)。这些事件似乎必须独立于 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;
Run Code Online (Sandbox Code Playgroud)
Ribbon Framework 内的 Samples 文件夹将更清楚地演示这一点。该框架可以在这里找到: http: //www.bilsen.com/windowsribbon/index.shtml