Free time-mini customized version reader. Download it here if you need it.
PC customized Edition
Http://wapidd.com/publish.htm
Features: Concealment, occasional work hours
Objective: To implement a novel reader with adjustable size in the lower right corner, which can be hidden in the same QQ tray form and restored by double-clicking. The desktop can be forced to display the top, transparency customization, and navigation window hiding.
:
According to the above requirements, write more than 20 lines for each formCode:
View code
Public Form1 ()
{
Initializecomponent ();
// Control the lower-right corner
This . Location = New Point (systeminformation. workingarea. Width- This . Width, systeminformation. workingarea. Height- This . Height); // webpage Loading
Webbrowser1.url = New Uri ( " Http://wapidd.com " );
}
Private Void Trayminimizerform_resize ( Object Sender, eventargs E)
{// Determine the maximum and minimum event triggering
If (Formwindowstate. Minimized =This . Windowstate)
{
Policyicon1.visible = True ;
This . Showintaskbar = False ;
This . Hide ();
}
Else If (Formwindowstate. Normal = This . Windowstate)
{
Policyicon1.visible = False ;
This . Showintaskbar = True ;
}
}
Private VoidNotifyicon1_mousedoubleclick (ObjectSender, mouseeventargs E)
{// Double-click the tray icon to restore
This. Show ();
This. Windowstate = formwindowstate. normal;
}
YesSource code@