如何制作全屏? [英] How to make full screen?

查看:70
本文介绍了如何制作全屏?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Blend3 + SketchFlow制作一个用于触摸屏的UI。
有几个问题。
如何在PC启动时自动启动应用程序?
如何启动它全屏?
感谢提前
卢克

I am making an UI using Blend3 + SketchFlow for a touch screen.
There are couple questions.
How to make my application start automatically when PC starts?
How to make it start on Full screen?
Thanks advance
Luke

推荐答案

首先,我建议在一个单独的主题中提出每个问题 - 这有助于处理以下问题ups。

即说:
)1)确保在主窗口中设置WindowStyle / WindowState / ResizeMode / Topmost标志:


First, I recommend asking each question in a separate thread - it helps for handling follow-ups.

That being said:

1) Make sure to set the WindowStyle/WindowState/ResizeMode/Topmost flags in your main Window:

<Window x:Class="Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="My Window" 
    ResizeMode="NoResize" 
    WindowStyle="None"
    WindowState="Maximized"
    Topmost="True">



2)您可以将其添加到"启动"按钮中。特定用户的菜单,或者只是将信息添加到注册表中。 此页面上列出了很多选项。此外,如果您将此用于Kiosk应用程序或类似的东西,如果您运行的是Windows Embedded,则还有其他选项。


2) You can either add it to the "startup" menu for the specific user, or just add the info into the registry.  There are quite a few options listed on this page.  Also, if you're using this for a Kiosk application or something similar, if you're running Windows Embedded, you have some other options.


这篇关于如何制作全屏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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