Winform開發幾個經常使用的開發經驗及知識積累(一)

本人作Winform開發多年,孜孜不倦,略有小成,其中收集或者本身開發一些經常使用的東西,基本上在各個項目都能用到的一些開發經驗及知識積累,現逐步介紹一些,以饗讀者,共同進步。 ide

一、窗口【×】關閉按鈕變爲最小化,並在托盤提示信息 函數

通常有些管理系統,爲了防止客戶隨意關閉程序或者基於其餘緣由,通常會把 窗口【×】關閉按鈕變爲最小化,如你們熟悉的飛信、MSN等等,可是有些不是很熟悉的客戶,最小化到托盤的時候,殊不知道程序到了那裏去了,所以,最小化的時候,伴隨一個氣泡提示信息,顯得有必定的必要,以下截圖所示。 ui

首先在主窗體的設計界面中添加一個NotifyIcon控件,而後實現相關的代碼便可。  this

下面列出一些關鍵的代碼出來,你們看了應該就知道如何實現了 spa

private void notifyMenu_Show_Click(object sender, EventArgs e)

        {

            if (this.WindowState == FormWindowState.Minimized)

            {

                this.WindowState = FormWindowState.Maximized;

                this.Show();

                this.BringToFront();

                this.Activate();

                this.Focus();

            }

            else

            {

                this.WindowState = FormWindowState.Minimized;

                this.Hide();

            }

        }



       private void notifyMenu_Exit_Click(object sender, EventArgs e)

        {

            try

            {

                this.ShowInTaskbar = false;

                Portal.gc.Quit();

            }

            catch

            {

                // Nothing to do.

            }

        }



        private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)

        {

            notifyMenu_Show_Click(sender, e);

        }



        private void MainForm_MaximizedBoundsChanged(object sender, EventArgs e)

        {

            this.Hide();

        }



        /// <summary>

        /// 縮小到托盤中,不退出

        /// </summary>

        private void MainForm_FormClosing(object sender, FormClosingEventArgs e)

        {

            //若是咱們操做【×】按鈕,那麼不關閉程序而是縮小化到托盤,並提示用戶.

            if (this.WindowState != FormWindowState.Minimized)

            {

                e.Cancel = true;//不關閉程序



                //最小化到托盤的時候顯示圖標提示信息,提示用戶並未關閉程序

                this.WindowState = FormWindowState.Minimized;

                notifyIcon1.ShowBalloonTip(3000, "程序最小化提示",

                     "圖標已經縮小到托盤,打開窗口請雙擊圖標便可。",

                     ToolTipIcon.Info);

            }

        }



        private void MainForm_Move(object sender, EventArgs e)

        {

            if (this == null)

            {

                return;

            }



            //最小化到托盤的時候顯示圖標提示信息

            if (this.WindowState == FormWindowState.Minimized)

            {

                this.Hide();

                notifyIcon1.ShowBalloonTip(3000, "程序最小化提示",

                    "圖標已經縮小到托盤,打開窗口請雙擊圖標便可。",

                    ToolTipIcon.Info);

            }

        }

二、只容許容許一個程序實例,即便是經過虛擬桌面方式鏈接過來的,也是隻容許一我的運行。 設計

這個已經封裝好代碼了,只須要在Main函數裏面調用一下函數便可,容許多個實例會出現下面的對話框提示信息,提示不容許多實例運行,以下所示: code

代碼以下所示。 orm

/// <summary>
        /// 應用程序的主入口點。
        /// </summary>
        [STAThread]
        private static void Main()
        {
            GlobalMutex();

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            //******啓動代碼**********
        }

        private static Mutex mutex = null;
        private static void GlobalMutex()
        {
            // 是否第一次建立mutex
            bool newMutexCreated = false;
            string mutexName = "Global\\" + "WareHouseMis";//系統名稱,Global爲全局,表示即便經過經過虛擬桌面鏈接過來,也只是容許運行一次
            try
            {
                mutex = new Mutex(false, mutexName, out newMutexCreated);
            }
            catch (Exception ex)
            {
                Console.Write(ex.Message);
                System.Threading.Thread.Sleep(1000);
                Environment.Exit(1);
            }

            // 第一次建立mutex
            if (newMutexCreated)
            {
                Console.WriteLine("程序已啓動");
                //todo:此處爲要執行的任務
            }
            else
            {
                MessageUtil.ShowTips("另外一個窗口已在運行,不能重複運行。");
                System.Threading.Thread.Sleep(1000);
                Environment.Exit(1);//退出程序
            }
        }

三、使用NotifyWindow給用戶提示信息 blog

能夠經過NotifyWindow類(最後附件中有),作一些信息的提示,方便用戶瞭解一些重要信息的提示,界面較爲友好,以下所示: ip

提示信息的代碼使用以下:

/// <summary>
        /// 彈出提示消息窗口
        /// </summary>
        public void Notify(string caption, string content)
        {
            Notify(caption, content, 400, 200, 5000);
        }

        /// <summary>
        /// 彈出提示消息窗口
        /// </summary>
        public void Notify(string caption, string content, int width, int height, int waitTime)
        {
            NotifyWindow notifyWindow = new NotifyWindow(caption, content);
            notifyWindow.TitleClicked += new System.EventHandler(notifyWindowClick);
            notifyWindow.TextClicked += new EventHandler(notifyWindowClick);
            notifyWindow.SetDimensions(width, height);
            notifyWindow.WaitTime = waitTime;
            notifyWindow.Notify();
        }

        private void notifyWindowClick(object sender, EventArgs e)
        {
            //SystemMessageInfo info = BLLFactory<SystemMessage>.Instance.FindLast();
            //if (info != null)
            //{
            //    //FrmEditMessage dlg = new FrmEditMessage();
            //    //dlg.ID = info.ID;
            //    //dlg.ShowDialog();
            //}
        }

四、使用SearchCondion控件,簡化查詢條件的轉化

無論在Winform或者在WebForm中,查詢構造條件老是很是繁瑣的事情,使用該控件能有效簡化代碼,提升操做的準確及方便行,這個控件我完成了幾年了,一直伴隨我處理各類查詢操做。

private string GetConditionSql()
        {
            SearchCondition condition = new SearchCondition();
            condition.AddCondition("ItemName", this.txtName.Text, SqlOperator.Like)
                .AddCondition("ItemBigType", this.txtBigType.Text, SqlOperator.Like)
                .AddCondition("ItemType", this.txtItemType.Text, SqlOperator.Like)
                .AddCondition("Specification", this.cmbSpecNumber.Text, SqlOperator.Like)
                .AddCondition("MapNo", this.txtMapNo.Text, SqlOperator.Like)
                .AddCondition("Material", this.txtMaterial.Text, SqlOperator.Like)
                .AddCondition("Source", this.txtSource.Text, SqlOperator.Like)
                .AddCondition("Note", this.txtNote.Text, SqlOperator.Like)
                .AddCondition("Manufacture", this.txtManufacture.Text, SqlOperator.Like)
                .AddCondition("ItemNo", this.txtItemNo.Text, SqlOperator.LikeStartAt);
            string where = condition.BuildConditionSql().Replace("Where", "");

            return where;
        }

能夠構造條件後,傳入查詢函數,實現數據的查詢。

string where = GetConditionSql();
            List<ItemDetailInfo> list = BLLFactory<ItemDetail>.Instance.Find(where, this.winGridViewPager1.PagerInfo);
            this.winGridViewPager1.DataSource = new WHC.Pager.WinControl.SortableBindingList<ItemDetailInfo>(list);
            this.winGridViewPager1.PrintTitle = Portal.gc.gAppUnit + " -- " + "備件信息報表";
最後呈上代碼用到的一些類庫及控件: http://files.cnblogs.com/wuhuacong/WinformTips.rar
相關文章
相關標籤/搜索