Click here to Skip to main content
15,887,083 members
Articles / Mobile Apps

Animating View Transitions on Windows Mobile

Rate me:
Please Sign up or sign in to vote.
3.67/5 (5 votes)
5 Jun 2008CPOL4 min read 39.9K   426   31  
How to animate child view transitions on a Windows Mobile WTL application.
// stdafx.h : include file for standard system include files,
//  or project specific include files that are used frequently, but
//      are changed infrequently
//

#pragma once

// Change this value to use different versions
#define WINVER 0x0420

#define _WIN32_WCE_AYGSHELL 1


extern void AssertBreakpoint();
#define ATLASSERT(expr) { if(!(expr)) AssertBreakpoint(); _ASSERTE(expr); }


#include <atlbase.h>
#include <atlapp.h>

extern CAppModule _Module;

#include <atlwin.h>
#include <atlframe.h>

#include <atluser.h>
#include <atlgdi.h>
#include <atlctrls.h>
#define _WTL_CE_NO_ZOOMSCROLL
#define _WTL_CE_NO_FULLSCREEN
#ifdef WIN32_PLATFORM_WFSP
#include <tpcshell.h>
#endif
#include <atldlgs.h>
#include <atlwince.h>
#include <atlmisc.h>

#include <aygshell.h>
#pragma comment(lib, "aygshell.lib")


#include "calctool.h"
#include "SelectionBar.h"

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 (Senior) Frotcom International
Portugal Portugal
I work on R&D for Frotcom International, a company that develops web-based fleet management solutions.

Comments and Discussions