データバインディングされる値がデータバインディング中にフォーマットされるように、DataGridViewTextBoxColumnをフォーマットする方法を探しています。たとえば、CompanyNameプロパティがあり、データバインディングが発生したときにCompanyNameから最初の5文字を取得する必要があります。
さまざまなDataGridViewイベント(RowsAddedなど)をフックしてすべての行をループし、トリックを実行することもできますが、これを行うためのより洗練された方法を見つけたいと思います。データバインディングを使用することにしたので、データをループして変更することは、データバインディングの概念に少し反します。
私が求めているのは、以下と同じことを行う方法ですが、カスタムフォーマットロジックを追加します。
dataGridView1.Columns[colSomeDate.Index].DataPropertyName = "SomeDate";
colSomeDate.DefaultCellStyle.Format = "yyyy";
IFormatProviderを実装する必要があると思いますが、どのように実装する必要があるのかよくわかりません。
dataGridView1.Columns[companyName.Index].DataPropertyName = "CompanyName";
companyName.DefaultCellStyle.FormatProvider = new ShortText(); // ShortText should implement IFormatProvider
IFormatProviderについてはわかりませんが、DataGridViews CellFormatting-eventは役に立ちますか?
private void dataGridView1_CellFormatting(object sender,
DataGridViewCellFormattingEventArgs e)
{
if (e.ColumnIndex == 0)
{
e.Value = e.Value.ToString().Substring(0, 5); // apply formating here
e.FormattingApplied = true;
}
}
http://msdn.Microsoft.com/en-us/library/z1cc356h.aspx?ppud=4
これが私の仕事をさせるために私がしたことです
public class MyFormatProvider : IFormatProvider, ICustomFormatter
{
public object GetFormat(Type formatType)
{
if (formatType == typeof(ICustomFormatter))
return this;
else
return null;
}
public string Format(string format, object arg, IFormatProvider formatProvider)
{
// Check whether this is an appropriate callback
if (!this.Equals(formatProvider))
return null;
//if argument/ value is null we return empty string
if (arg == null)
return null;
string resultString = arg.ToString();
//transform resultString any way you want (could do operations based on given format parameter)
//return the resultant string
return resultString;
}
}
これは私がセルフォーマットハンドラーに入れたものです
//In your datagridview, handle the cell formatting event in required cell as
if (e.ColumnIndex == dgvPayments.Columns["amount"].Index)
{
e.Value = String.Format(new MyFormatProvider (), "{0:U}", e.Value);
e.FormattingApplied = true;
}
サブストリングを実行するプロパティをクラスに追加し、それにバインドします。
IFormatProviderがまさに必要なもののようです。次に、さまざまなビューに必要なさまざまな形式のさまざまなコードを定義できます。
Codeproject から。
public override string ToString()
{
return ToString("g", null); // Always support "g" as default format.
}
public string ToString(string format)
{
return ToString(format, null);
}
public string ToString(IFormatProvider formatProvider)
{
return ToString(null, formatProvider);
}
public string ToString(string format, IFormatProvider formatProvider)
{
if (format == null) format = "g"; // Set default format, which is always "g".
// Continue formatting by checking format specifiers and options.
}
これは、IFormattable
とICustomFormatter
の実装例に使用するコードスニペットです。
Implements IFormattable
Implements ICustomFormatter
Public Function Format(ByVal formatExpression As String, ByVal arg As Object, ByVal formatProvider As System.IFormatProvider) As String Implements System.ICustomFormatter.Format
'type is currently ignored
' if type is international then "USPS" should result in international address
' if type is international then "US" should result in international address
' and so on
'
'.NET Framework Class Library
'IFormattable Interface
'Remarks - A class that implements IFormattable must support the "G" (general) formatting code. Besides the "G" code, the class can define the list of formatting codes that it supports.
'is G and g the same?
' yes for numeric
' no for date/time
'Standard Numeric Format Strings
' G or g - both are the same
'Standard DateTime Format Strings
' g - General date/time pattern (short time)
' G - General date/time pattern (long time)
If Len(formatExpression) = 0 Then
Return String.Format("{0}", arg)
End If
'usps - standardized
'us - address less country
'international - all address lines
If formatExpression.Equals("g") Then
'general formatting code
' as per documentation
Return GatherAddress(_line1, _line2, _city, _state, _Zip, _country, _type, AddressFormat.StandardUS)
ElseIf formatExpression.Equals("G") Then
'general formatting code
' as per documentation
Return GatherAddress(_line1, _line2, _city, _state, _Zip, _country, _type, AddressFormat.Standardized)
ElseIf formatExpression.ToUpper.Equals("USPS") Then
Return GatherAddress(_line1, _line2, _city, _state, _Zip, _country, _type, AddressFormat.Standardized)
ElseIf formatExpression.ToUpper.Equals("US") Then
Return GatherAddress(_line1, _line2, _city, _state, _Zip, _country, _type, AddressFormat.StandardUS)
ElseIf formatExpression.ToUpper.Equals("INTERNATIONAL") Then
Return GatherAddress(_line1, _line2, _city, _state, _Zip, _country, _type, AddressFormat.International)
Else
Return MyBase.ToString()
End If
End Function
Public Overloads Function ToString(ByVal format As String, ByVal formatProvider As System.IFormatProvider) As String Implements System.IFormattable.ToString
Return Me.Format(format, Nothing, formatProvider)
End Function
あなたはいつでもあなたのaspxページからそのようなカスタムフォーマット関数を呼び出すことができます:
<asp:GridView ID="gvPlatforms" runat="server" AutoGenerateColumns="false"
GridLines="None">
<Columns>
<asp:TemplateField HeaderText="Icon">
<ItemTemplate>
<asp:Image ID="imgPlatformLogo" runat="server" ImageUrl='<%#GetImagePath(Eval("Abbr")) %>' />
</ItemTemplate>
</asp:TemplateField>
</Columns>
そして、そのページの背後にあるコードで:
protected string GetImagePath(object abbr){
return string.Format("{0}{1}.gif", Constants.URLs.PLATFORM_LOGOS, abbr.ToString());}