Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6904639
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:05:11+00:00 2026-05-27T08:05:11+00:00

I am working in .Net Windows Application. My requirement is, through my code i

  • 0

I am working in .Net Windows Application. My requirement is, through my code i want to disable or hide the SYSTEM TRAY…

I am not having any idea regarding this..Kindly guide me.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T08:05:11+00:00Added an answer on May 27, 2026 at 8:05 am

    If you need to show/hide Windows taskbar you can use this:

    public class Taskbar
    {
        [DllImport( "user32.dll" )]
        private static extern int FindWindow( string className, string windowText );
        [DllImport( "user32.dll" )]
        private static extern int ShowWindow( int hwnd, int command );
    
        private const int SW_HIDE = 0;
        private const int SW_SHOW = 1;
    
        protected static int Handle
        {
            get { return FindWindow( "Shell_TrayWnd", "" ); }
        }
    
        private Taskbar() { }
    
        public static void Show()
        {
            ShowWindow( Handle, SW_SHOW );
        }
    
        public static void Hide()
        {
            ShowWindow( Handle, SW_HIDE );
        }
    }
    

    So you can use
    Taskbar.Show() to show taskbar and
    Taskbar.Hide() to hide it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on a Windows Forms application in C#/.Net. I want to use
As I am working on windows .Net Windows form application, I want to know
Using VB.Net, C#.Net and SQL Server. Windows Application I want to separate a code
I am working on C#.Net windows application. Here i want to implement search functionality
I'm one step away from having my Windows .Net application working on Mac OS
I am working on an old .NET 1.1 windows application. In the debugging configuration
hello i have created one windows application in c# .net and its working fine
I'm working on a Windows Forms (.NET 3.5) application that has a built-in exception
I am working on a mobile application in .NET. This is a windows mobile
I'm working on a windows application project using front end vb.net & back end

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.