服务应用程序太明显

发布于 2024-08-28 01:20:33 字数 216 浏览 7 评论 0原文

在 Delphi 5 中开发一个服务应用程序,该应用程序旨在在 Windows XP - 7 上运行。该应用程序的大部分都很好地组合在一起,但我遇到了一个问题。该服务应用程序的一部分是偶尔显示数据的表单(类似于 Avast 用于让您知道其更新的滑块框)。当服务显示表单时,表单会显示在任务栏上,但我们不希望如此。有人对如何隐藏任务栏上的表单按钮有任何建议吗?到目前为止,我发现的常规应用程序的标准方法都不起作用。谢谢。

Working on a service application in Delphi 5 that is intended to run on Windows XP - 7. Most of the application is coming together nicely, but I'm running into one issue. Part of this service application is a form that displays data occasionally (similar to the slider box Avast uses to let you know its updated). When the service shows the form, the form displays on the taskbar, but we don't want it to. Does anyone have any suggestions as to how to hide the form's button on the taksbar? None of the standard methods I've found for regular applications have worked so far. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

忆离笙 2024-09-04 01:20:33

听起来好像您设想有一个通知区域图标(也称为系统托盘图标)来通知用户有关服务的事件/与服务相关的事件。

您需要将服务的 GUI 方面与服务本身分开,并使用某种 IPC 来允许托盘图标小程序根据需要与服务进行通信。根据 IPC 的需求,这可能是命名管道、对内存映射文件的共享访问或更复杂的东西。

然后,用于管理 GUI 与任务栏的行为的技术应该按预期工作。

It sounds as if you envisage having a notification area icon (a.k.a. system tray icon) to inform the user about events in/relating to the service.

You need to separate this GUI aspect of your service from the service itself and use some sort of IPC to allow the tray icon applet to communicate with the service as required. Depending on the needs of your IPC this could be a named pipe, shared access to a memory mapped file or something more sophisticated.

Then the techniques for managing the behaviour of the GUI w.r.t the taskbar should work as expected.

爱已欠费 2024-09-04 01:20:33

重写表单的 CreateParams 方法并将 WS_EX_TOOLWINDOW 值添加到 Params.ExStyle 字段。这会将其标记为工具窗口,该窗口没有任务栏条目。

Override the form's CreateParams method and add the WS_EX_TOOLWINDOW value to the Params.ExStyle field. That will flag it as a tool window, which won't have a taskbar entry.

メ斷腸人バ 2024-09-04 01:20:33

http://delphi.about 上找到此内容。 com/od/adptips1999/qt/hidefromtaskbar.htm

procedure TMainForm.FormCreate(Sender: TObject) ;
begin
  ShowWindow(Application.Handle, SW_HIDE) ;
  SetWindowLong(Application.Handle, GWL_EXSTYLE, getWindowLong(Application.Handle, GWL_EXSTYLE) or WS_EX_TOOLWINDOW) ;
  ShowWindow(Application.Handle, SW_SHOW) ;
end;

使用 Delphi 2007,要隐藏任务栏按钮,您需要几行代码:

将 MainFormOnTaskBar 设置为 FALSE

在主窗体的 OnShow 事件处理程序调用

ShowWindow(Application.Handle, SW_HIDE);

内 在主窗体的 OnActivate 内事件处理程序调用

ShowWindow(Application.Handle, SW_HIDE); 

Found this on http://delphi.about.com/od/adptips1999/qt/hidefromtaskbar.htm

procedure TMainForm.FormCreate(Sender: TObject) ;
begin
  ShowWindow(Application.Handle, SW_HIDE) ;
  SetWindowLong(Application.Handle, GWL_EXSTYLE, getWindowLong(Application.Handle, GWL_EXSTYLE) or WS_EX_TOOLWINDOW) ;
  ShowWindow(Application.Handle, SW_SHOW) ;
end;

With Delphi 2007, to hide the taskbar button you'll need a few code lines:

Set MainFormOnTaskBar to FALSE

Inside the main form's OnShow event handler call

ShowWindow(Application.Handle, SW_HIDE);

Inside the main form's OnActivate event handler call

ShowWindow(Application.Handle, SW_HIDE); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文