![]() ![]() ![]() ![]() |
|||||
|
|||||
樓主 hkjlg ![]()
![]() |
{ Table.SelectAllCells(); Table.ClipboardCopyMode = DataGridClipboardCopyMode.IncludeHeader; ApplicationCommands.Copy.Execute(null, Table); String resultat = (string)System.Windows.Clipboard.GetData(System.Windows.DataFormats.CommaSeparatedValue); String result = (string)System.Windows.Clipboard.GetData(System.Windows.DataFormats.Text); Table.UnselectAllCells(); System.IO.StreamWriter file1 = new System.IO.StreamWriter("test.xls"); file1.WriteLine(result.Replace(",", " ")); file1.Close(); Process.Start("test.xls"); } |