有谁知道触摸屏那种满屏用什么实现的?用c#做可以吗?

解决方案 »

  1.   

    全屏显示一下,fullscreen = true
      

  2.   

    用什么做都可以,我原来用asp作过,呵呵
      

  3.   

    可以直接使用网页制作,最后将首页做成xxx.hta的方式,然后将它加入启动栏 就可以实现开机全屏的效果
      

  4.   

    formborderstyle 设为 None
    windowState 设为 maximized
    TopMast 设为 true 
    这就可以了.我做的就设置了这些,而且好用///*************************///
    这两年来慢慢习惯了光说不练
    ///*************************///
      

  5.   

    在InitializeComponent();事件后添加 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
    this.WindowState = System.Windows.Forms.FormWindowState.Maximized; Rectangle rect = Screen.PrimaryScreen.Bounds;
    this.Size = rect.Size;
    this.Location = rect.Location;
    this.TopMost = true;