【发布时间】:2017-01-05 14:41:41
【问题描述】:
我开发了一个全屏模式的应用程序,即:
Imports System.IO
Public Class FormMain
Private Sub FormMain_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
Me.Location = New Point(0, 0)
Me.Size = SystemInformation.PrimaryMonitorSize
Me.StartPosition = FormStartPosition.WindowsDefaultLocation
End Sub
在没有菜单栏的情况下打开表单的行是 Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None ,这使我无法在展开的屏幕中拖放应用程序。
我正在办公室的电脑上启动应用程序,但目的是显示在我房间外的屏幕上。
谢谢
【问题讨论】:
-
你的问题是什么?
-
is there a programming way to open it in the other screen by default? :) -
Screen课程可能会帮助您:msdn.microsoft.com/en-us/library/…