Win32TaskbarProgress/zh CN

From Free Pascal wiki
Revision as of 06:43, 29 December 2020 by Robsean (talk | contribs) (Created page with "{{Platform only|Windows}} =About= This is unit which contains the class to control the progressbar over the Windows 7+ taskbar button. The demo looks like this: Image:Win3...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Windows logo - 2012.svg

This article applies to Windows only.

See also: Multiplatform Programming Guide

About

This is unit which contains the class to control the progressbar over the Windows 7+ taskbar button. The demo looks like this:

Win32TaskbarProgressDemo.png

Taskbar button progress can have several styles:

  • none (inactive)
  • green progress
  • yellow progress (looks like paused state)
  • red progress (looks like error state)
  • marquee floating animation (progress value is ignored, it's constantly changing animation from min to max)


Author: Alexey Torgashin

License: MIT

Usage

In the form's OnShow (or maybe OnCreate) create the object like this:

uses
  win32taskbarprogress;

procedure TForm1.FormShow(Sender: TObject);
begin
  GlobalTaskbarProgress:= TWin7TaskProgressBar.Create;
end;

And then call properties of this object like this:

  //to change state: none, green, yellow, red, floating
  GlobalTaskbarProgress.Style:= TTaskBarProgressStyle(ComboBoxStyle.ItemIndex);
 
  //to change progress value 0 to 100
  GlobalTaskbarProgress.Progress:= Edit1.Value;

Author tried to init the object in the "initialization" part of win32taskbarprogress, but failed, maybe because Application.Handle is not inited so early.

Download

Unit file and demo project: https://github.com/Alexey-T/Win32TaskbarProgress