「TotalFileCount」== 0の場合、このコードはフォルダーを開きます。フォルダーを開いて画面の中央に配置し、特定のサイズにしたい。C#でそれを行う方法はありますか?
if (TotalFileCount == 0)
{
MessageBox.Show("There are no files in this directory. Please add pictures to this folder: " + AppVars.PolicyImagesDirectory + " and try again.", "Error!", MessageBoxButtons.OK, MessageBoxIcon.Error);
btnBrowse.Focus();
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = AppVars.PolicyImagesDirectory;
process.Start();
}
新しい Windows エクスプローラ ウィンドウが開いたら、特定のサイズにして画面の中央に配置できますか?