답변:
지금까지 두 답변 모두 Silverlight SaveFileDialog
클래스에 연결되어 있습니다 . WPF 변형이 아주 조금의 다른 이름 공간을 서로 다른 것입니다.
Microsoft.Win32.SaveFileDialog dlg = new Microsoft.Win32.SaveFileDialog();
dlg.FileName = "Document"; // Default file name
dlg.DefaultExt = ".text"; // Default file extension
dlg.Filter = "Text documents (.txt)|*.txt"; // Filter files by extension
// Show save file dialog box
Nullable<bool> result = dlg.ShowDialog();
// Process save file dialog box results
if (result == true)
{
// Save document
string filename = dlg.FileName;
}
SaveFileDialog
클래스를 사용하십시오 .
SaveFileDialog 를 만들고 ShowDialog 메서드를 호출 하기 만하면 됩니다.
지금까지의 모든 예제는 Win32 네임 스페이스를 사용하지만 대안이 있습니다.
FileInfo file = new FileInfo("image.jpg");
var dialog = new System.Windows.Forms.SaveFileDialog();
dialog.FileName = file.Name;
dialog.DefaultExt = file.Extension;
dialog.Filter = string.Format("{0} images ({1})|*{1}|All files (*.*)|*.*",
file.Extension.Substring(1).Capitalize(),
file.Extension);
dialog.InitialDirectory = file.DirectoryName;
System.Windows.Forms.DialogResult result = dialog.ShowDialog(this.GetIWin32Window());
if (result == System.Windows.Forms.DialogResult.OK)
{
}
확장 메서드를 사용 IWin32Window
하여 시각적 컨트롤에서 가져옵니다 .
#region Get Win32 Handle from control
public static System.Windows.Forms.IWin32Window GetIWin32Window(this System.Windows.Media.Visual visual)
{
var source = System.Windows.PresentationSource.FromVisual(visual) as System.Windows.Interop.HwndSource;
System.Windows.Forms.IWin32Window win = new OldWindow(source.Handle);
return win;
}
private class OldWindow : System.Windows.Forms.IWin32Window
{
private readonly System.IntPtr _handle;
public OldWindow(System.IntPtr handle)
{
_handle = handle;
}
System.IntPtr System.Windows.Forms.IWin32Window.Handle
{
get { return _handle; }
}
}
#endregion
Capitalize()
또한 확장 방법이지만 문자열의 첫 글자를 대문자로 사용하는 예가 많이 있으므로 언급 할 가치가 없습니다.
GetIWin32Window
합니까?