Difference between revisions of "Win32TaskbarProgress/zh CN"

From Lazarus wiki
Jump to navigationJump to search
(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...")
 
Line 19: Line 19:
 
License: MIT
 
License: MIT
  
=Usage=
+
=用法=
  
In the form's OnShow (or maybe OnCreate) create the object like this:
+
在窗体的 OnShow (或者 OnCreate) 中创建对象,像这样:
  
 
<syntaxhighlight lang="pascal">
 
<syntaxhighlight lang="pascal">
Line 33: Line 33:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
And then call properties of this object like this:
+
接下来,调用这个对象的属性,像这样:
  
 
<syntaxhighlight lang="pascal">
 
<syntaxhighlight lang="pascal">
   //to change state: none, green, yellow, red, floating
+
   //来更改状态: none, green, yellow, red, floating
 
   GlobalTaskbarProgress.Style:= TTaskBarProgressStyle(ComboBoxStyle.ItemIndex);
 
   GlobalTaskbarProgress.Style:= TTaskBarProgressStyle(ComboBoxStyle.ItemIndex);
 
   
 
   
   //to change progress value 0 to 100
+
   //来更改进度值:0 到 100
 
   GlobalTaskbarProgress.Progress:= Edit1.Value;
 
   GlobalTaskbarProgress.Progress:= Edit1.Value;
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Author tried to init the object in the "initialization" part of win32taskbarprogress, but failed, maybe because Application.Handle is not inited so early.
+
作者尝试在 win32taskbarprogress 的 "initialization" 部分初始化对象,但是失败了,可能是因为 Application.Handle 不能这么早地被初始化
  
 
=Download=
 
=Download=
  
 
Unit file and demo project: https://github.com/Alexey-T/Win32TaskbarProgress
 
Unit file and demo project: https://github.com/Alexey-T/Win32TaskbarProgress

Revision as of 07:53, 29 December 2020

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

用法

在窗体的 OnShow (或者 OnCreate) 中创建对象,像这样:

uses
  win32taskbarprogress;

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

接下来,调用这个对象的属性,像这样:

  //来更改状态: none, green, yellow, red, floating
  GlobalTaskbarProgress.Style:= TTaskBarProgressStyle(ComboBoxStyle.ItemIndex);
 
  //来更改进度值:0 到 100
  GlobalTaskbarProgress.Progress:= Edit1.Value;

作者尝试在 win32taskbarprogress 的 "initialization" 部分初始化对象,但是失败了,可能是因为 Application.Handle 不能这么早地被初始化

Download

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