티스토리 뷰

C#/WPF

WPF tutorial - The SaveFileDialog

광그로 2017. 6. 29. 16:31

http://www.wpf-tutorial.com/dialogs/the-savefiledialog/


SaveFileDialog Filter


이전의 OpneFileDialog와 유사하게 filter를 적용시킬 수 있습니다.

Filter 속성을 사용하여, 저장 확장자명을 한정시킬 수 있습니다.

1
2
3
4
5
6
<DockPanel Margin="10">
        <WrapPanel HorizontalAlignment="Center" DockPanel.Dock="Top" Margin="0,0,0,10">
            <Button Name="btnSaveFile" Click="btnSaveFile_Click">Save file</Button>
        </WrapPanel>
        <TextBox Name="txtEditor" TextWrapping="Wrap" AcceptsReturn="True" ScrollViewer.VerticalScrollBarVisibility="Auto" />
    </DockPanel>
cs

1
2
3
4
5
6
7
private void btnSaveFile_Click(object sender, RoutedEventArgs e)
        {
            SaveFileDialog saveFileDialog = new SaveFileDialog();
            saveFileDialog.Filter = "Text file (*.txt)|*.txt|C# file (*.cs)|*.cs";  
            if (saveFileDialog.ShowDialog() == true)
                File.WriteAllText(saveFileDialog.FileName, txtEditor.Text);
        }
cs


Setting the initial directory


초기 디렉토리 세팅도 OpenFileDialog에서의 설정과 동일합니다.

1
2
saveFileDialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
 
cs

참고 사이트 : https://msdn.microsoft.com/en-us/library/system.environment.specialfolder.aspx


Option
https://msdn.microsoft.com/ko-kr/library/system.windows.forms.savefiledialog(v=vs.110).aspx

SaveFileDialog를 입맛에 맞게 조정하는데 도움이 됩니다.


AddExtension : 기본값은 true이며, 확장자명을 생략한 경우 대화상자가 파일 이름에 확장자를 자동으로 추가하는지에 대한 여부를 결정합니다.

OverwritePrompt : 기본값은 true이며, 기존 파일에 대한 덮어 쓰기의 여부를 결정합니다.

Title : '다른 이름으로 저장'과 같은 상황에서 사용

1
saveFileDialog.Title = "다른 이름으로 저장에 대한 title";
cs



ValidateNames : 기본값은 true이며, 유효한 파일 이름만 입력하게 합니다. false로 설정하면 위의 중복된 이름에 대한 처리와 같은 예외의 알림 없이 저장합니다.

'C# > WPF' 카테고리의 다른 글

WPF tutorial - The WPF Menu control  (0) 2017.06.29
WPF tutorial - The other dialogs  (0) 2017.06.29
WPF tutorial- The OpenFileDialog  (0) 2017.06.29
WPF tutorial - The MessageBox  (0) 2017.06.29
WPF tutorial - Implementing a custom WPF Command  (0) 2017.06.29
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함