• 忙里偷闲迷你定制版小说阅读器


    忙里偷闲-给朋友定制迷你定制版小说阅读器,分享下,觉得有需要就去这里下载

    PC定制版 

    http://wapidd.com/publish.htm

    目的:实现一个小说阅读器,右下角显示,大小可调整,可同QQ托盘形式隐藏,双击恢复,可强制桌面显示顶端,透明度自定义及导航窗隐藏

    效果图:

     

    根据以上需求,写了各form,20多行代码:

    View Code
    public Form1()
            {
                InitializeComponent();
    //控制右下角显示
                this.Location = new Point(SystemInformation.WorkingArea.Width - this.Width, SystemInformation.WorkingArea.Height - this.Height);
    //网页加载
                webBrowser1.Url = new Uri("http://wapidd.com");
            }

            private void TrayMinimizerForm_Resize(object sender, EventArgs e)
            {  
    //判断最大最小事件触发
                           if (FormWindowState.Minimized == this.WindowState)
                {
                    notifyIcon1.Visible = true;
     this.ShowInTaskbar = false;
                    this.Hide();
                }
                else if (FormWindowState.Normal == this.WindowState)
                {
                    notifyIcon1.Visible = false;
                    this.ShowInTaskbar = true;
                }
            } 

            private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
            {
    //双击托盘图标恢复
                this.Show();
                this.WindowState = FormWindowState.Normal;
            }

    要源代码的@

  • 相关阅读:
    ExtJs之Grid
    [java]转:String Date Calendar之间的转换
    SQL Server脚本备份
    Java实现文件夹的复制(包括子文件夹与文件)
    Android webview使用详解
    zxing条码扫描横屏修改
    Genymotion的安装与eclipse配置教程
    开发中遇到的问题
    sql中COUNT()+GROUP BY +HAVING的组合使用
    由于包名与引用的库名相同导致的报错
  • 原文地址:https://www.cnblogs.com/wyxy2005/p/2516958.html
Copyright © 2020-2023  润新知