首页 > TAG信息列表 > savefiledialog

C#-WPF-LiveChart大数据时图标绘制(曲线图)并支持图片保存

xmlns:lvc="clr-namespace:LiveCharts.Wpf;assembly=LiveCharts.Wpf" <Button     Name="SaveBtn"     Grid.Row="0"     Width="100"     Height="32"     HorizontalAlignment="Center"     VerticalAlignm

C#实现将DataGridView中的数据保存到CSV和Excel中

一、保存到CSV public static bool dataGridViewToCSV(DataGridView dataGridView) { if (dataGridView.Rows.Count == 0) { MessageBox.Show("没有数据可导出!", "提示", MessageBoxButtons.OK, MessageBoxIcon.In

C#-SaveFileDialog:InvalidOperationException由于在多线程应用程序中的“所有者”参数

很长的帖子很抱歉,但是我试图非常详细地解释这个问题,以免引起混淆.最后一句包含实际问题. 我正在用C#/.NET编写多线程应用程序. 该应用程序包含一个主窗口,该窗口可可视化来自压力传感器的数据.传感器数据在自己的线程中获取. 数据也记录在类ListView的实例中: 可以通过“保存”按

CodeGo.net>如何提示用户保存一个自动的Excel文件

我已经搜索了,但是没有发现任何东西直接打到我要寻找的东西上(或者我的搜索没有碰到单词组合). 在C#中,我使用Interop.Excel创建了一个Excel工作表,在其中插入了一些数据并创建了图表.当我执行xlWorkBook.SaveAs时,一切正常. 我要做的是提示用户将自动化工作簿放置在具有自己文件名

VectorDraw常见问题整理:如何在OpenFileDialog和SaveFileDialog中

  VectorDraw Developer Framework(VDF)是一个用于应用程序可视化的图形引擎库。有了VDF提供的功能,您可以轻松地创建、编辑、管理、输出、输入和打印2D和3D图形文件。   问:    如果只允许从我的应用程序中打开并保存一些特定的文件类型。例如vdml / vdcl和png文件。怎样才能做

c-自定义Win32的“保存文件”对话框

我正在尝试使用GetSaveFileName保存文件,并且希望在我的保存文件对话框的底部有几个额外的弹出窗口,以允许用户指定其他选项.我正在尝试在该主题上关注MSDN documentation(特别是Explorer-style customization),但似乎无法显示我的自定义项目.我相信在收到OFNHookProc的调用时,我已

导出到Excel

//导出Excel public void ExportToExecl() { //System.Windows.Forms.SaveFileDialog sfd = new SaveFileDialog(); //sfd.DefaultExt = "xls"; string FileName = "年度旅客查验分析-" + DateTime.Now.ToString(&q

C# – 在Listbox中保存值

我有以下代码: SaveFileDialog saveGC1File = new SaveFileDialog(); private void GCSavePlacementOneButton_Click(object sender, EventArgs e) { // Initialize the SaveFileDialog to specify the .txt extension for the file. saveGC1File.DefaultExt = "*.tx

c# – 为什么我在WinForms应用程序中使用SaveFileDialogue时出现RPC服务器错误?

当我尝试在WinForms应用程序中使用SaveFileDialogue时出现错误.我必须遗漏一些东西,因为错误没有意义(对我来说!)! 错误是:“TestProject.exe中0x000007fefc99cacd的第一次机会异常:0x000006BA:RPC服务器不可用.” 此行运行时发生错误:“if(SD.ShowDialog()== DialogResult.OK)”. 这是我

c# – SaveFileDialog抛出System.InvalidOperationException:’My File.xlsx’不是有效的文件名

客户刚刚在我们的应用程序中遇到此错误,这在Microsoft.Win32.SaveFileDialog上调用ShowDialog时基本上就会发生.完整的堆栈跟踪如下: System.InvalidOperationException: ‘My File.xlsx’ is not a valid file name. at Microsoft.Win32.SaveFileDialog.RunFileDialog(OPENFI

c# – 如何防止SaveFileDialog提示两次替换/覆盖文件?

如何阻止System.Windows.Forms.SaveFileDialog提示两次替换所选文件,而只提示一次? 要么我错过了什么,我的安装有问题,或者默认行为只是愚蠢. var saveFileDialog = new SaveFileDialog(); saveFileDialog.ShowDialog(); // User selects file and clicks "Save" within the dialog

c# – 如何使用SaveFileDialog的过滤器

我用这段代码创建了Filter: saveFileDialog1.FileName = "SimplifiedLog"; saveFileDialog1.Filter = "RichTextFormate | *.rtf |Text Files | *.txt |All Files| *.*"; saveFileDialog1.Title = "Save Simplified KL File"; saveFileDialog1.ShowDial

WPF 选择文件选择文件夹

namespace Microsoft.Win32   选择文件: if (string.IsNullOrEmpty(folderInitialDirectory)) { folderInitialDirectory = FileAndFolderOperation.Instance.GetUserDocumentFolder(); } SaveFileDialog saveFileDialog = new SaveFileD

A Tool to Clip Images

using Microsoft.Win32;using System;using System.IO;using System.Text.RegularExpressions;using System.Windows;using System.Windows.Media.Imaging;namespace Clip{ class Clip { [STAThread] static void Main(string[] args) {

C#实现将Chart图表生成JPG图片的方法

      SaveFileDialog savefile= new SaveFileDialog();            savefile.Filter = "JPEG文件|*.jpg";            if (savefile.ShowDialog() == DialogResult.OK)            {