iMatch 0 Denunciar post Postado Abril 7, 2014 Olá, Como abro um diálogo de salvar e abrir arquivos no WPF? Compartilhar este post Link para o post Compartilhar em outros sites
Daniel Barroso 2 Denunciar post Postado Abril 7, 2014 Utilize a class System.Windows.Controls.SaveFileDialog. Compartilhar este post Link para o post Compartilhar em outros sites
iMatch 0 Denunciar post Postado Abril 7, 2014 Olá, Aqui não existe essa classe dentro dessa namespace! Compartilhar este post Link para o post Compartilhar em outros sites
quintelab 91 Denunciar post Postado Abril 8, 2014 Tente isso: 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; } Abraços... Compartilhar este post Link para o post Compartilhar em outros sites
iMatch 0 Denunciar post Postado Abril 8, 2014 Olá, Não apareceu a caixa de diálogo. Compartilhar este post Link para o post Compartilhar em outros sites
quintelab 91 Denunciar post Postado Abril 10, 2014 O que aconteceu nessa linha? // Show save file dialog box Nullable<bool> result = dlg.ShowDialog(); Deu algum erro?Abraços... Compartilhar este post Link para o post Compartilhar em outros sites
iMatch 0 Denunciar post Postado Abril 11, 2014 Olá, Não deu erro, apenas não aconteceu nada! Compartilhar este post Link para o post Compartilhar em outros sites