'標準アプリ(フォト)で画像が開かれる Run_Process = System.Diagnostics.Process.Start(Filename) 'Nothing MsgBox(Run_Process?.HasExited)
'Windows Photo Viewer で画像が開かれる Run_Process = System.Diagnostics.Process.Start("rundll32.exe", $"""{Environment.GetEnvironmentVariable("ProgramFiles")}\Windows Photo Viewer\PhotoViewer.dll"",ImageView_Fullscreen {Filename}") 'False MsgBox(Run_Process?.HasExited)
'フォトで画像が開かれる Run_Process = New System.Diagnostics.Process() 'Run_Process.StartInfo.FileName = "shell:AppsFolder\Microsoft.Windows.Photos_8wekyb3d8bbwe!App" Run_Process.StartInfo.FileName = "ms-photos:" Run_Process.StartInfo.Arguments = Filename Run_Process.StartInfo.UseShellExecute = True Run_Process.Start() 'InvalidOperationException:このオブジェクトに関連付けられているプロセスはありません。 MsgBox(Run_Process.HasExited)