Click here to Skip to main content
15,885,985 members
Articles / Programming Languages / C#

Mobile Development: Disable Windows Mobile 6.5 Start and Close Button

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
18 Nov 2010CPOL2 min read 35.4K   4   18
Windows Mobile 6.5.3. Class to subclass menu toolbar to disable Start and Close button clicks

Here is one other way to write a kios mode .NET application using a technique called SubClassing. The idea was born by a comment of redwolf2222 on this blog about how to Hide Start and Close buttons on Windows Mobile 6.5 devices. Redwolf2222 also provided a code snippet. Unfortunately, it was incomplete and so I wrote my own class.

Disable Clicks on Start and Close Button

The demo project shows one dialog with two check boxes and you can easily test the function. If “StartButton Disabled” or “Close Button disabled” is checked, you cannot ‘click’ the corresponding button any more:

You still ‘click’ the buttons but the subclassed window will not ‘execute’ your click. The buttons are part of the toolbar32 window which is a child of the menu_worker window. So first, we have to follow the window tree.

Find the Right Window

C#
/// <summary>
/// SubClassing: Install the wndproc hook
/// </summary>
/// <returns></returns>
private bool hookWindow()
{
    //find taskbar
    IntPtr hWndTaskbar = FindWindow("HHTaskbar", IntPtr.Zero);
    if (hWndTaskbar == IntPtr.Zero)
        return false;
    //enable the taskbar, not really necessary
    EnableWindow(hWndTaskbar, true);
    //already installed?
    if (oldWndProc == IntPtr.Zero)
    {
        //find the menu_worker window
        IntPtr hwndMenu_Worker = FindWindow("menu_worker", IntPtr.Zero);
        if (hwndMenu_Worker != IntPtr.Zero)
        {
            //get the child window which has the buttons on it
            IntPtr hwndToolbar = GetWindow(hwndMenu_Worker, GetWindow_Cmd.GW_CHILD);
            if (hwndToolbar != IntPtr.Zero)
            {
                _mHwnd = hwndToolbar;       //store to remember
                SubclassHWnd(hwndToolbar);  //subclass the wndproc
            }
        }
    }
    return true;
}

Subclassing

Now, as we have the window handle, the subclassing can be started:

C#
private void SubclassHWnd(IntPtr hWnd)
{
    // hWnd is the window you want to subclass..., create a new
    // delegate for the new wndproc
    newWndProc = new Win32WndProc(MyWndProc);
    // subclass
    oldWndProc = SetWindowLong(hWnd, GWL_WNDPROC, newWndProc);
}

The installation of the ‘hook’ is very simple. Just use SetWindowLong with the new window procedure. The old, original window procedure is saved for later use. We need it for example to call it for clicks outside the buttons and for all messages we don't care about.

The ‘hook’ or better the redirection will remain active until you install the old window procedure. So your device’s start and close button will not ‘work’ as long as the hook is in place.

The New Window Procedure

C#
// this is the new wndproc, just show a messagebox on left button down:
private IntPtr MyWndProc(IntPtr hWnd, int msg, int wParam, int lParam)
{
    //is this a message for us?
    if (((msg == (int)WM_LBUTTONDOWN) || (msg == (int)WM_LBUTTONUP)) && 
	(this._mIsStartButtonDisabled || this._mIsCloseButtonDisabled) )
    {
        int x = ((int)lParam) & 0xFFFF;
        int y = ((int)lParam) >> 16;
 
        bool isVGA;
        bool isQVGA;
        using (System.Windows.Forms.Control detector = 
			new System.Windows.Forms.Control())
        {
            using (System.Drawing.Graphics gr = detector.CreateGraphics())
            {
                isVGA = gr.DpiY == 192;
                isQVGA = gr.DpiY == 96;
            }
        }
 
        RECT rect;
        GetWindowRect(hWnd, out rect); //get the rectangle of the menu_bar
 
        int width = Math.Max(rect.Left, rect.Right) - 
				Math.Min(rect.Left, rect.Right);
        int height = Math.Max(rect.Bottom, rect.Top) - 
				Math.Min(rect.Bottom, rect.Top);
 
        //width values are assumed
        int buttonWidth = (isQVGA | isVGA) ? 92 : 46;
        int buttonHeight = height; //(isQVGA | isVGA) ? 72 : 36;
 
        System.Drawing.Rectangle rectStartButton = 
	new System.Drawing.Rectangle(0, 0, buttonWidth, buttonHeight);
        System.Drawing.Rectangle rectCloseButton = 
	new System.Drawing.Rectangle(width - buttonWidth, 0, 
				buttonWidth, buttonHeight);
 
        //check if enabled and click is inside the start or close button rectangle
        if(this._mIsStartButtonDisabled && rectStartButton.Contains(x, y))
            return IntPtr.Zero;
        if (this._mIsCloseButtonDisabled && rectCloseButton.Contains(x, y))
            return IntPtr.Zero;
 
        //if both are false, we have to provide the click to windows
        return CallWindowProc(oldWndProc, hWnd, msg, wParam, lParam);
    }
    else
        return CallWindowProc(oldWndProc, hWnd, msg, wParam, lParam);
}

Subclassing the window means that we redirect the window message procedure of the found window to our own, custom window procedure. This new procedure checks for WM_LBUTTONDOWN and WM_LBUTTONUP messages. Then the click position is checked and discarded if within the rectangle area of the Start and/or Close button. If the position is outside the calculated rectangles, the original window procedure is called.

The Demo Code

C#
public partial class StartButtonControl : Form
{
    StartButtonWM65.hwndutils _hwndutils = new StartButtonWM65.hwndutils();
    private bool _bInitializing = true;
    public StartButtonControl()
    {
        InitializeComponent();
        this.chkDisableStartButton.Checked = this._hwndutils.StartButtonDisabled;
        _bInitializing = false;
    }
 
    private void chkDisableStartButton_CheckStateChanged(object sender, EventArgs e)
    {
        if (_bInitializing)
            return;
        this._hwndutils.StartButtonDisabled = chkDisableStartButton.Checked;
    }
 
    private void mnuExit_Click(object sender, EventArgs e)
    {
        _hwndutils.Dispose();
        Application.Exit();
    }
 
    private void StartButtonControl_Closing(object sender, CancelEventArgs e)
    {
        _hwndutils.Dispose();
        Application.Exit();
    }
 
    private void chkCloseButton_CheckStateChanged(object sender, EventArgs e)
    {
        if (_bInitializing)
            return;
        this._hwndutils.CloseButtonDisabled = chkCloseButton.Checked;
    }
}

As you see, the usage of the class hwndutils is very simple. Don't forget to Dispose the hwndutils object before you exit your app.

Downloads

Visual Studio 2008 solution with demo project targeting Windows Mobile 6 SDK:

Thanks to redwolf2222 for the great idea.

License

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


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

Comments and Discussions

 
QuestionDisabling the Taskbar Pin
kcmmi25-Mar-14 7:07
kcmmi25-Mar-14 7:07 
AnswerRe: Disabling the Taskbar Pin
hjgode25-Mar-14 8:26
hjgode25-Mar-14 8:26 
GeneralRe: Disabling the Taskbar Pin
kcmmi25-Mar-14 8:36
kcmmi25-Mar-14 8:36 
GeneralRe: Disabling the Taskbar Pin
hjgode25-Mar-14 18:28
hjgode25-Mar-14 18:28 
GeneralRe: Disabling the Taskbar Pin
kcmmi26-Mar-14 3:42
kcmmi26-Mar-14 3:42 
GeneralRe: Disabling the Taskbar Pin
kcmmi26-Mar-14 5:58
kcmmi26-Mar-14 5:58 
GeneralRe: Disabling the Taskbar Pin
hjgode26-Mar-14 8:41
hjgode26-Mar-14 8:41 
GeneralRe: Disabling the Taskbar Pin
kcmmi28-Mar-14 12:04
kcmmi28-Mar-14 12:04 
GeneralRe: Disabling the Taskbar Pin
hjgode31-Mar-14 22:53
hjgode31-Mar-14 22:53 
Yep, you are right, disabling the taskbar also disables the SoftKeys (F1 and F2) to open the main menu entries.

So, better use other ways to lockdown or do not use SoftKeys.

Thanks for pointing this out

~Josef
GeneralRe: Disabling the Taskbar Pin
kcmmi1-Apr-14 3:21
kcmmi1-Apr-14 3:21 
GeneralRe: Disabling the Taskbar Pin
kcmmi25-Mar-14 11:50
kcmmi25-Mar-14 11:50 
Generalnice but... Pin
moshhc9-Dec-10 4:17
moshhc9-Dec-10 4:17 
GeneralRe: nice but... Pin
hjgode9-Dec-10 6:46
hjgode9-Dec-10 6:46 
GeneralRe: nice but... Pin
Member 1253988428-Nov-16 19:59
Member 1253988428-Nov-16 19:59 
GeneralRe: nice but... Pin
hjgode29-Nov-16 2:14
hjgode29-Nov-16 2:14 
GeneralRe: nice but... Pin
Member 1253988429-Nov-16 19:11
Member 1253988429-Nov-16 19:11 
GeneralRe: nice but... Pin
hjgode30-Nov-16 5:57
hjgode30-Nov-16 5:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.