Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Customize the task bar in Windows Mobile Devices

0.00/5 (No votes)
31 Jan 2008 1  
Disable/enable task bar in a handheld device using a flag

Introduction

This article basically provides functionality for a Compact Framework based handheld device task bar to be enabled or disabled.

Background

The Compact Framework does not directly support disabling or enabling the task bar in devices. So, I used Platform Invoke (P/Invoke). Just copy and paste this code in your project, and pass the two arguments depending on what you want to do with the task bar.

Using the code

using System;
using System.Text;
using System.Runtime.InteropServices;

namespace PPC.Common
{
    public class LockTaskBar
    {
        [DllImport("CoreDll.dll", SetLastError = true)]
        public static extern IntPtr FindWindow(string className, string WindowsName);

        [DllImport("coredll.dll", EntryPoint = "EnableWindow")]
        public static extern bool EnableWindow(IntPtr hwnd, bool bEnable);

        /// <summary>
        /// this is for enable and disable task bar. 
        /// Basically this is provide access control Start menu.
        /// </summary>
        /// <param name="HHTaskBar">HHTaskBar</param>
        /// <param name="enabled">default false</param>
        /// <returns></returns>
        public static bool Execute(string HHTaskBar,bool enabled)
        {
            bool IsState = false;
            try
            {
                IntPtr hwnd = FindWindow(HHTaskBar, null);

                if (!hwnd.Equals(IntPtr.Zero))
                {
                    if (enabled)
                    {
                        IsState = EnableWindow(hwnd, false);
                    }
                    else
                    {
                        IsState =EnableWindow(hwnd, true);
                    }
                }
            }
            catch (DllNotFoundException dllex)
            {
                throw dllex;
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return IsState;
        }
    }
}

Just copy and paste the code in your project, and call the Execute method passing the window handle string HHTaskBar. If you want to disable the Start menu, pass true, otherwise pass false.

History

  • First version: 01/01/2008.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here