/// <summary> /// シングルトン: 自身のインスタンスを返す /// </summary> /// <returns></returns> public static ImageFileOpenDialog GetInstance() { if (_self == null) { _self = new ImageFileOpenDialog(); } return(_self); }
private void OpenImage() { string filePath = ImageFileOpenDialog.GetInstance().Show(); if (filePath != "") { DisplayInfo(filePath); } }