mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2024-11-24 08:52:15 +02:00
60 lines
1.3 KiB
Plaintext
60 lines
1.3 KiB
Plaintext
object Form1: TForm1
|
|
Left = 0
|
|
Height = 390
|
|
Top = 0
|
|
Width = 775
|
|
Caption = 'Form1'
|
|
ClientHeight = 390
|
|
ClientWidth = 775
|
|
Color = clBtnFace
|
|
Font.Color = clWindowText
|
|
Font.Height = -13
|
|
Font.Name = 'Tahoma'
|
|
OnCreate = FormCreate
|
|
OnDestroy = FormDestroy
|
|
Position = poScreenCenter
|
|
object labLabLastThreadTime: TLabel
|
|
Left = 8
|
|
Height = 16
|
|
Top = 47
|
|
Width = 336
|
|
Caption = 'Информация о времени последнего запущенного потока'
|
|
end
|
|
object btnRunInParallelThread: TButton
|
|
Left = 8
|
|
Height = 33
|
|
Top = 8
|
|
Width = 217
|
|
Caption = 'Запустить доп. поток'
|
|
TabOrder = 0
|
|
OnClick = btnRunInParallelThreadClick
|
|
end
|
|
object Button1: TButton
|
|
Left = 248
|
|
Height = 33
|
|
Top = 8
|
|
Width = 177
|
|
Caption = 'Остановить потоки'
|
|
TabOrder = 1
|
|
OnClick = Button1Click
|
|
end
|
|
object ListBox1: TListBox
|
|
Left = 8
|
|
Height = 313
|
|
Top = 69
|
|
Width = 759
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
ItemHeight = 0
|
|
TabOrder = 2
|
|
end
|
|
object btnClearListBox: TButton
|
|
Left = 431
|
|
Height = 33
|
|
Top = 8
|
|
Width = 75
|
|
Caption = 'Очистить'
|
|
TabOrder = 3
|
|
OnClick = btnClearListBoxClick
|
|
end
|
|
end
|