Silverlight DataGridデータをExcelまたはcsvにエクスポートする方法はありますか?
ウェブを検索しましたが、例が見つかりません!
どうもありがとう
Silverlight 3は、ユーザーのデスクトップ上の指定した場所にファイルを作成する機能をユーザーに提供するため、この質問への回答を変更します。私は、DaniCEから送信されたコードを適合させ、読みやすくするためにいくつかの方法に分割し、Excelが認識すべき緩やかに定義されたCSV形式を使用しています。
private void exportHistoryButton_Click(object sender, RoutedEventArgs e)
{
string data = ExportDataGrid(true, historyDataGrid);
SaveFileDialog sfd = new SaveFileDialog()
{
DefaultExt = "csv",
Filter = "CSV Files (*.csv)|*.csv|All files (*.*)|*.*",
FilterIndex = 1
};
if (sfd.ShowDialog() == true)
{
using (Stream stream = sfd.OpenFile())
{
using (StreamWriter writer = new StreamWriter(stream)) {
writer.Write(data);
writer.Close();
}
stream.Close();
}
}
}
private string FormatCSVField(string data) {
return String.Format("\"{0}\"",
data.Replace("\"", "\"\"\"")
.Replace("\n", "")
.Replace("\r", "")
);
}
public string ExportDataGrid(bool withHeaders, DataGrid grid)
{
string colPath;
System.Reflection.PropertyInfo propInfo;
System.Windows.Data.Binding binding;
System.Text.StringBuilder strBuilder = new System.Text.StringBuilder();
System.Collections.IList source = (grid.ItemsSource as System.Collections.IList);
if (source == null)
return "";
List<string> headers = new List<string>();
grid.Columns.ToList().ForEach(col => {
if (col is DataGridBoundColumn){
headers.Add(FormatCSVField(col.Header.ToString()));
}
});
strBuilder
.Append(String.Join(",", headers.ToArray()))
.Append("\r\n");
foreach (Object data in source)
{
List<string> csvRow = new List<string>();
foreach (DataGridColumn col in grid.Columns)
{
if (col is DataGridBoundColumn)
{
binding = (col as DataGridBoundColumn).Binding;
colPath = binding.Path.Path;
propInfo = data.GetType().GetProperty(colPath);
if (propInfo != null)
{
csvRow.Add(FormatCSVField(propInfo.GetValue(data, null).ToString()));
}
}
}
strBuilder
.Append(String.Join(",", csvRow.ToArray()))
.Append("\r\n");
}
return strBuilder.ToString();
}
クリップボードを使用して this を見つけました。
コードを汎用的にするには、最初の例を変更して列バインディングを読み取り、リフレクションを使用してそれらをデータに適用します。
public String ExportDataGrid(DataGrid grid)
{
string colPath;
System.Reflection.PropertyInfo propInfo;
System.Windows.Data.Binding binding;
System.Text.StringBuilder strBuilder = new System.Text.StringBuilder();
System.Collections.IList source = (grid.DataContext as System.Collections.IList);
if (source == null)
return "";
foreach (Object data in source)
{
foreach (DataGridColumn col in datagrid.Columns)
{
if (col is DataGridBoundColumn)
{
binding = (col as DataGridBoundColumn).Binding;
colPath = binding.Path.Path;
propInfo = data.GetType().GetProperty(colPath);
if (propInfo != null)
{
strBuilder.Append(propInfo.GetValue(data, null).ToString());
strBuilder.Append(",");
}
}
}
strBuilder.Append("\r\n");
}
return strBuilder.ToString();
}
もちろん、バインディングのパスがプロパティ名である場合にのみ機能します。より高度なパスについては、バインディングをデータに適用する必要があります(私はそれがより良い解決策になると思いますが、今はこれを行う方法がわかりません)。
これは古い投稿であることは知っていますが、役に立ちました。 Silverlight 4、Converter、Excelで動作するように編集しました。高速なエクスポートが必要だったので、まずCSVを使用してから、Excelで開きました。このコードは、Silverlight WebおよびOOBの高い信頼で機能します。 WebではExcelで開きません。
private static void OpenExcelFile(string Path)
{
dynamic excelApp;
excelApp = AutomationFactory.CreateObject("Excel.Application");
dynamic workbook = excelApp.workbooks;
object oMissing = Missing.Value;
workbook = excelApp.Workbooks.Open(Path,
oMissing, oMissing, oMissing, oMissing, oMissing,
oMissing, oMissing, oMissing, oMissing, oMissing,
oMissing, oMissing, oMissing, oMissing);
dynamic sheet = excelApp.ActiveSheet;
// open the existing sheet
sheet.Cells.EntireColumn.AutoFit();
excelApp.Visible = true;
}
private static string FormatCSVField(string data)
{
return String.Format("\"{0}\"",
data.Replace("\"", "\"\"\"")
.Replace("\n", "")
.Replace("\r", "")
);
}
public static string ExportDataGrid(DataGrid grid,string SaveFileName,bool AutoOpen)
{
string colPath;
System.Reflection.PropertyInfo propInfo;
System.Windows.Data.Binding binding;
System.Text.StringBuilder strBuilder = new System.Text.StringBuilder();
var source = grid.ItemsSource;
if (source == null)
return "";
List<string> headers = new List<string>();
grid.Columns.ToList().ForEach(col =>
{
if (col is DataGridBoundColumn)
{
headers.Add(FormatCSVField(col.Header.ToString()));
}
});
strBuilder
.Append(String.Join(",", headers.ToArray()))
.Append("\r\n");
foreach (var data in source)
{
List<string> csvRow = new List<string>();
foreach (DataGridColumn col in grid.Columns)
{
if (col is DataGridBoundColumn)
{
binding = (col as DataGridBoundColumn).Binding;
colPath = binding.Path.Path;
propInfo = data.GetType().GetProperty(colPath);
if (propInfo != null)
{
string valueConverted = "";
if (binding.Converter.GetType().ToString() != "System.Windows.Controls.DataGridValueConverter")
valueConverted = binding.Converter.Convert(propInfo.GetValue(data, null), typeof(System.String), binding.ConverterParameter, System.Globalization.CultureInfo.CurrentCulture).ToString();
else
valueConverted = FormatCSVField(propInfo.GetValue(data, null) == null ? "" : propInfo.GetValue(data, null).ToString());
csvRow.Add(valueConverted.ToString());
}
}
}
strBuilder
.Append(String.Join(",", csvRow.ToArray()))
.Append("\r\n");
}
if (AutomationFactory.IsAvailable)
{
var sampleFile = "\\" + SaveFileName;
var path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
path += "\\Pement";
if (!System.IO.Directory.Exists(path))
{
System.IO.Directory.CreateDirectory(path);
}
else
{
var files = System.IO.Directory.EnumerateFiles(path);
foreach (var item in files)
{
try
{
System.IO.File.Delete(item);
}
catch { }
}
}
StreamWriter sw = File.CreateText(path + sampleFile);
sw.WriteLine(strBuilder.ToString());
sw.Close();
if (AutoOpen)
OpenExcelFile(path + sampleFile, true, true);
}
else
{
SaveFileDialog sfd = new SaveFileDialog()
{
DefaultExt = "csv",
Filter = "CSV Files (*.csv)|*.csv|All files (*.*)|*.*",
FilterIndex = 1
};
if (sfd.ShowDialog() == true)
{
using (Stream stream = sfd.OpenFile())
{
using (StreamWriter writer = new StreamWriter(stream))
{
writer.Write(strBuilder.ToString());
writer.Close();
}
stream.Close();
}
}
}
return strBuilder.ToString();
}
Silverlightがファイルをダウンロードする方法を提供するとは思わない。 URLを呼び出すボタンをアプリに追加できます(例: http://www.mysite.com/generateexcelfile.aspx )。 Silverlightアプリに表示されるデータを生成するために使用されるパラメーターをクエリ文字列値として含め、クエリを実行し、お気に入りのExcelファイル生成コンポーネントを使用してファイルを即座に生成します。リダイレクトして、ユーザーのシステムにダウンロードします。
私の頭の上では、ControlTemplate
を使用してエクスポートボタンを追加し、DataSource
の各項目を反復処理してから、Columns
の各列を使用することができます。 GetCellContent
メソッドを使用して各セルのコンテンツを取得するか、DataGridColumnのバインディング情報を使用して適切なセル値を取得します。次に、このコンテンツの表示された値を取得して、レポートに書き込むことができます。
何かのようなもの...
foreach (YourType item in grid.DataSource)
{
foreach (DataGridColumn column in grid.Columns)
{
FrameworkElement cellContent = column.GetCellContent(item);
// Now, determine the type of cell content and act accordingly.
TextBlock block = cellContent as TextBlock;
if (block != null)
{
// Report text value...
}
// ...etc...
}
}
または、 DaniCE で説明されているバインディング情報を使用します。
ライアンの解決策をチェックしてください。見た目は良いのですが、見つけたばかりなので保証できません。ライアンはDLL上記の要求を実行します。
http://www.rshelby.com/post/exporting-data-from-silverilght-datagrid-to-Excel.aspx
上記のダコタのソリューションのDavidは、実装が少し簡単に見え、データグリッドとコンテンツタイプがExcelに設定された従来のasp.netページへのリダイレクトが常に存在しますが、サポートするコードが増えますオフラインのブラウザソリューション以外では機能しない可能性があります(実際には機能しません)。
とにかく、これは一般的なタスクです。ここまたはMicrosoftの一部の人がMortプラグアンドプレイソリューションを考え出すことを願っています:)
SilverlightデータグリッドからのCVSエクスポートの拡張メソッドを見つけました-
http://www.codeproject.com/KB/silverlight/SilverlightDataGridExport.aspx
プラグアンドプレイになる可能性がありますが、アイテムデータソースを使用してデータグリッドで動作するようにするには、ほんの少しそれを調整する必要がありました(投稿のコメントを参照)。自分より明るく経験豊富な人なら、完璧に微調整できるはずです。確認してください。必要なものに近づくはずです。
これらの解決策は私にとってはうまくいかなかったので、うまくいくように修正しました。 (私のソリューションではフィールドを囲む引用符は必要ないため、FormatCSVField関数を省略しました)
public void SaveAs(string csvPath)
{
string data = ExportDataGrid(true, _flexGrid);
StreamWriter sw = new StreamWriter(csvPath, false, Encoding.UTF8);
sw.Write(data);
sw.Close();
}
public string ExportDataGrid(bool withHeaders, Microsoft.Windows.Controls.DataGrid grid)
{
System.Text.StringBuilder strBuilder = new System.Text.StringBuilder();
System.Collections.IEnumerable source = (grid.ItemsSource as System.Collections.IEnumerable);
if (source == null) return "";
List<string> headers = new List<string>();
grid.Columns.ToList().ForEach(col =>
{
if (col is Microsoft.Windows.Controls.DataGridBoundColumn)
{
headers.Add(col.Header.ToString());
}
});
strBuilder.Append(String.Join(",", headers.ToArray())).Append("\r\n");
foreach (Object data in source)
{
System.Data.DataRowView d = (System.Data.DataRowView)data;
strBuilder.Append(String.Join(",", d.Row.ItemArray)).Append("\r\n");
}
return strBuilder.ToString();
}
私は同じことをする必要がありました。私はt3rseによる実装を使用しましたが、いくつかの変更を加える必要がありました。私は彼の答えについてコメントするのに十分な評判がないので、ここにリストします。
PropInfo.GetValue(data、null).ToString()を示す行について、GetStringによって返された値がNullかどうかを確認してから、ToString()を呼び出しました。
メソッドFormatCSVField()では、二重引用符を3つの二重引用符に置き換えました。 2つの二重引用符で置き換える必要があります。
実装では、タイプDataGridBoundColumnの列のみが使用され、その他は無視されます。含めたいDataGridBoundColumnではない列があるので、col.SortMemberPathを使用して、それらの列のデータソースのプロパティ名を取得しました。
これは私のために働いた素晴らしいアプローチです http://forums.silverlight.net/forums/p/179321/404357.aspx