/// <summary>
/// 设置默认联系人显示图标
/// </summary>
/// <param name="sender">sender</param>
/// <param name="e">e</param>
private void DgvLinkMan_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (e.ColumnIndex == this.SetDefaultColum.DisplayIndex)
{
var data = this.DgvLinkMan.Rows[e.RowIndex].DataBoundItem as UserContactModule;
if (data.IsDefault == 1)
{
e.Value = ResourceService.GetImage("LM00302-02");
}
else
{
e.Value = ResourceService.GetImage("CM001-03");
}
}
}
/// 设置默认联系人显示图标
/// </summary>
/// <param name="sender">sender</param>
/// <param name="e">e</param>
private void DgvLinkMan_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (e.ColumnIndex == this.SetDefaultColum.DisplayIndex)
{
var data = this.DgvLinkMan.Rows[e.RowIndex].DataBoundItem as UserContactModule;
if (data.IsDefault == 1)
{
e.Value = ResourceService.GetImage("LM00302-02");
}
else
{
e.Value = ResourceService.GetImage("CM001-03");
}
}
}
浙公网安备 33010602011771号