# DelphiWindowsToast **Repository Path**: qinix2/DelphiWindowsToast ## Basic Information - **Project Name**: DelphiWindowsToast - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Delphi Windows Toast (Only Firemonkey) Windows Toast like Android Toast # Usage Place TWindowsToastDialog on form; On your form, anywhere in your source, call the MakeText procedure; example: ```pascal WindowsToastDialog1.MakeText("Testing Windows Toast"); ``` # ---- You can change the duration, text color and background color; MakeText(Text; Duration; BackgroundColor; TextColor); example: ```pascal WindowsToastDialog1.MakeText('Toast on Windows Application', ToastDurationLengthShort, $FF009688, $FFFFFFFF); ```