
```csharp
[System.ComponentModel.Description("查看影像操作列表-表单插件")]
public class ASCImageOperationEdit : AbstractMobilePlugin
{
public override void AfterBindData(EventArgs e)
{
base.AfterBindData(e);
var ascImageDict = this.View.ParentFormView.Session["ASCImageDict"] as Dictionary;
if (!ascImageDict.IsEmpty())
{
List formatCondition = new List();
for (int i = 0; i < ascImageDict.Count; i++)
{
int rowIndex = this.Model.GetEntryRowCount("FMobileListViewEntity");
this.Model.CreateNewEntryRow("FMobileListViewEntity");
formatCondition.Add(new MobileFormatCondition() {Key = "FViewImage",Value = ascImageDict.Values.ElementAt(i).Get("Name").ToString(),Row = rowIndex + 1 });
if (i % 2 == 0)