mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2024-11-24 16:53:48 +02:00
33 lines
716 B
Plaintext
33 lines
716 B
Plaintext
object Form1: TForm1
|
|
Left = 0
|
|
Height = 127
|
|
Top = 0
|
|
Width = 251
|
|
Caption = 'Form1'
|
|
ClientHeight = 127
|
|
ClientWidth = 251
|
|
Color = clBtnFace
|
|
Font.Color = clWindowText
|
|
Font.Height = -13
|
|
Font.Name = 'Tahoma'
|
|
Position = poScreenCenter
|
|
object btnRunInParallelThread: TButton
|
|
Left = 8
|
|
Height = 33
|
|
Top = 64
|
|
Width = 235
|
|
Caption = 'Выполнить в параллельном потоке'
|
|
TabOrder = 0
|
|
OnClick = btnRunInParallelThreadClick
|
|
end
|
|
object btnRunInMainThread: TButton
|
|
Left = 8
|
|
Height = 33
|
|
Top = 8
|
|
Width = 235
|
|
Caption = 'Выполнить в главном потоке'
|
|
TabOrder = 1
|
|
OnClick = btnRunInMainThreadClick
|
|
end
|
|
end
|