I would like to know how to open a video file in FULL SCREEN using Process.Start().
The code I currently have opens the (only) file in my directory in maximized mode, which does not hide the windows 10 task bar. How to open video file in full screen with Process.Start()?
static void Main(string[] args)
{
foreach (var path_to_object in Directory.GetFiles(@"D:\"))
{
ProcessStartInfo file_object = ProcessStartInfo(path_to_object);
file_object.WindowStyle = ProcessWindowStyle.Maximized;
Process.Start(file_object);
}
}