windows mobile下實現非全屏視窗顯示

2021-05-22 12:56:01 字數 1275 閱讀 5066

//切換到別的視窗再返回後,出現全屏顯示的問題,已解決。初始化中**將視窗居中顯示。  

//實現方法:建立如下dialog,繼承它的dialog都是非全屏視窗。  

nonfsdialog.h  

#pragma once  

// cnonfsdialog dialog  

class cnonfsdialog : public cdialog  

;  

protected:  

virtual void dodataexchange(cdataexchange* pdx);    // ddx/ddv support  

declare_message_map()  

public:  

virtual bool oninitdialog();  

afx_msg void onsettingchange(uint uflags, lpctstr lpszsection);  

};  

nonfsdialog.c  

// nonfsdialog.cpp : implementation file  

//  

#include "stdafx.h"  

#include "nonfsdialog.h"  

// cnonfsdialog dialog  

implement_dynamic(cnonfsdialog, cdialog)  

cnonfsdialog::cnonfsdialog(uint nidtemplate,cwnd* pparent /*=null*/)  

: cdialog(/*cnonfsdialog::idd*/nidtemplate, pparent)  

cnonfsdialog::~cnonfsdialog()  

void cnonfsdialog::dodataexchange(cdataexchange* pdx)  

begin_message_map(cnonfsdialog, cdialog)  

on_wm_settingchange()  

end_message_map()  

// cnonfsdialog message handlers  

bool cnonfsdialog::oninitdialog()  

void cnonfsdialog::onsettingchange(uint uflags, lpctstr lpszsection)  

Windows Mobile下建立cmwap接入點

程式中如果要使用http或socket連線伺服器,需要先連線網路。connmgrestablishconnectionsync函式中的connmgr connectioninfo引數,不論採用iid destnetwap還是iid destnetinternet,似乎都要依賴於手機上的接入點設定。都...

Windows Mobile下使用ZLIB壓縮

前言 在當前手機應用中,可能壓縮技術不太引起重視,但是我們可以注意到一點,當手機與伺服器進行通訊的時候,速度與穩定性是非常重要,在這一環節中,我們如果把原檔案 或者原內容 直接傳送到伺服器,不僅耗費不少流量 在當前流量費不便宜的情況下,這種情況能避免就盡量避免 而且傳輸的速度慢,消耗的時間長,也有可...

Windows mobile下記憶體洩露檢測

crtdbg.h標頭檔案 如下 crtdbg.cpp 如下 然後在程式的main函式裡新增 crtsetdbgflag on 其實這是乙個 define crtsetdbgflag ignore garbagecollector gb 這樣的定義 在程式退出的時候會呼叫garbagecollecto...