-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* NotificationWindows - Bugfix: TWinControl descendants are sometimes…
… not rendered on Win 10, but the switch AlphaBlend off and on again solve the issue. * Notification example extended * Compiled Notification example updated in the ZIP file
- Loading branch information
Showing
5 changed files
with
119 additions
and
16 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,48 @@ | ||
inherited MyNotificationWindow: TMyNotificationWindow | ||
Caption = 'My custom derived notification window' | ||
ClientHeight = 119 | ||
GlassFrame.Top = 0 | ||
ExplicitHeight = 143 | ||
PixelsPerInch = 96 | ||
TextHeight = 13 | ||
object Label1: TLabel | ||
Left = 0 | ||
Top = 0 | ||
Width = 350 | ||
Height = 66 | ||
object MainLabel: TLabel | ||
AlignWithMargins = True | ||
Left = 3 | ||
Top = 3 | ||
Width = 344 | ||
Height = 81 | ||
Margins.Bottom = 35 | ||
Align = alClient | ||
Alignment = taCenter | ||
Caption = 'Add some text here to notify your users.' | ||
Caption = 'Here comes the important message...' | ||
Font.Charset = DEFAULT_CHARSET | ||
Font.Color = clWindowText | ||
Font.Height = -13 | ||
Font.Name = 'Tahoma' | ||
Font.Style = [] | ||
GlowSize = 2 | ||
ParentFont = False | ||
ShowAccelChar = False | ||
Layout = tlCenter | ||
ExplicitWidth = 234 | ||
ExplicitHeight = 20 | ||
ExplicitLeft = 0 | ||
ExplicitTop = 0 | ||
ExplicitWidth = 216 | ||
ExplicitHeight = 16 | ||
end | ||
object MainActionButton: TButton | ||
Left = 216 | ||
Top = 86 | ||
Width = 126 | ||
Height = 25 | ||
Caption = 'Action!' | ||
TabOrder = 0 | ||
OnClick = MainActionButtonClick | ||
end | ||
object ProgressBar: TProgressBar | ||
Left = 8 | ||
Top = 90 | ||
Width = 202 | ||
Height = 17 | ||
TabOrder = 1 | ||
Visible = False | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters