Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C#

Window Tray Minimizer

Rate me:
Please Sign up or sign in to vote.
4.91/5 (60 votes)
26 Oct 2007CPOL6 min read 178.5K   4.1K   203  
An article showing how to minimize any Window to the system tray
using System;
using System.Collections.Generic;
using System.Text;

namespace Tray_minimizer
{
    class window
    {
        public IntPtr handle;
        public string title;
        public bool isminimzed;
        public bool ismaximized;

        public window()
        {
            handle = IntPtr.Zero;
            title = "";
            isminimzed = false;
            ismaximized = false;
        }

        public window(IntPtr handle, string title, bool isminimized, bool ismaximized)
        {
            this.handle = handle;
            this.title = title;
            this.isminimzed = isminimized;
            this.ismaximized = ismaximized;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Georgia Georgia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions