Aa BIRTHDAY ALARM
BIRTH DAY ALARM [POP WHEN YOUR BIRTH DAY
AI
KI-Zusammenfassung: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Quellcode
Upload
' VB.NET
Protected Overrides ReadOnly Property CreateParams() As System.Windows.Forms.CreateParams
Get
Const CS_DROPSHADOW = &H20000
Dim cp As CreateParams = MyBase.CreateParams
cp.ClassStyle = cp.ClassStyle Or CS_DROPSHADOW
Return cp
End Get
End Property
//C#
///
<summary>
/// This property adds drop shadows to the for(in WinXP+)
///
</summary>
protected override System.Windows.Forms.CreateParams CreateParams
{
get
{
const int CS_DROPSHADOW = 0x20000;
CreateParams cp = base.CreateParams;
cp.ClassStyle = cp.ClassStyle | CS_DROPSHADOW;
return cp;
}
}
Originalkommentare (3)
Wiederhergestellt von der Wayback Machine