WQ_ZWD 发表于 2022-2-9 10:07:40

wince应用程序全屏显示



1.C 语言实现
添加头文件
#include <windows.h>添加全屏设置函数

// 传入全屏窗口句柄 void setWindowFullScreen(HWND hwnd)在显示主窗口前,调用上面的 setWindowFullScreen 函数设置主窗口全屏。



2.C#实现

添加引用

using System.Runtime.InteropServices;
using System.Data;在窗口类中添加下列内容

public struct Rect 在显示窗口前,调用上面的 setWindowFullScreen 函数设置主窗口全屏。





页: [1]
查看完整版本: wince应用程序全屏显示