wince中的全屏应用程序 [英] full screen application in wince

查看:66
本文介绍了wince中的全屏应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

我正在使用c#.net从wince开发应用程序.对于全屏应用程序模式,我已使用以下过程.

this.Height = Screen.PrimaryScreen.Bounds.Height;
this.Width = Screen.PrimaryScreen.Bounds.Width;
this.TopMost = true;

工作正常.但这是为了正确操作而应隐藏在全屏模式下正确显示的内容或任务栏.

hello,

i amdeveloping a application fro wince using c#.net .for full screen application modei have used below procedure.

this.Height = Screen.PrimaryScreen.Bounds.Height;
this.Width = Screen.PrimaryScreen.Bounds.Width;
this.TopMost=true;

it''s working fine. but it''s that the correct todisplay in full screen mode or the task bar should be hidden for proper operaions

推荐答案

尝试以下操作:

Try this:

this.Bounds = Screen.PrimaryScreen.Bounds;
this.TopMost = true;


感谢您的回复.该代码工作正常,但是当卸载初始屏幕时,主窗体将显示在任务栏上.应该完全禁用任务栏
thank you for your reply. the code is working fine but when a splash screen unloaded the main form is displyed with task bar. should is disable totally the task bar


这篇关于wince中的全屏应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆