WPF में सेव एज़ डायल कैसे दिखाऊँ?


101

मुझे WPF / C # में एक बटन पर क्लिक करने, कुछ डेटा इकट्ठा करने और फिर इसे एक टेक्स्ट फ़ाइल में रखने की आवश्यकता है, जिसे उपयोगकर्ता अपनी मशीन पर डाउनलोड कर सकते हैं। मुझे इसका पहला भाग मिल सकता है, लेकिन आप "सेव एज़" डायलॉग बॉक्स वाले उपयोगकर्ता को कैसे संकेत देते हैं? फाइल अपने आप में एक साधारण टेक्स्ट फाइल होगी।


9
तो क्या वास्तव में इस सवाल को "मैं WPF में सेव एज़ डायल कैसे दिखाऊं?"
RQDQ

जवाबों:


201

दोनों जवाब इस प्रकार सिल्वरलाइट 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;
}

23

SaveFileDialog Microsoft.in32 नामस्थान में है - आपको यह पता लगाने में 10 मिनट लग सकते हैं।


18

यहाँ कुछ नमूना कोड है:

string fileText = "Your output text";

SaveFileDialog dialog = new SaveFileDialog()
{
    Filter = "Text Files(*.txt)|*.txt|All(*.*)|*"
};

if (dialog.ShowDialog() == true)
{
     File.WriteAllText(dialog.FileName, fileText);
}


1

आपको बस एक SaveFileDialog बनाने की जरूरत है , और इसकी ShowDialog विधि को कॉल करें।


@ एरॉन थैंक्स, मैं गलत संस्करण से जुड़ा। मैंने अपना उत्तर सही करने के लिए अब अपडेट कर दिया है।
बारह

1

अब तक के सभी उदाहरण 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?
edgarmtze
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.