本文整理汇总了C#中System.Object.SetPropertyValue方法的典型用法代码示例。如果您正苦于以下问题:C# Object.SetPropertyValue方法的具体用法?C# Object.SetPropertyValue怎么用?C# Object.SetPropertyValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Object
的用法示例。
在下文中一共展示了Object.SetPropertyValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FillModel
/// <summary>
/// 填充model
/// </summary>
/// <param name="entity"></param>
/// <param name="control"></param>
public static void FillModel(Object entity, WebUI.Control control)
{
if (entity == null || control == null)
return;
NameValueCollection formData = HttpContext.Current.Request.Form;
PropertyInfo[] propertyList = entity.GetProperties();
foreach (PropertyInfo pi in propertyList)
{
string ctlId = string.Format(IdFormat, pi.Name);
WebUI.Control ctl = control.FindControl(ctlId);
if (ctl == null)
{
#region 处理HMTL标签
if (formData[ctlId] != null)
entity.SetPropertyValue(pi.Name, formData[ctlId]);
#endregion
continue;
}
Type ctlType = ctl.GetType();
#region 处理服务器控件
if (ctlType == typeof(WebUI.WebControls.TextBox))//文本框
{
entity.SetPropertyValue(pi.Name, ((WebUI.WebControls.TextBox)ctl).Text);
}
else if (ctlType == typeof(WebUI.WebControls.Image))//图片
{
entity.SetPropertyValue(pi.Name, ((WebUI.WebControls.Image)ctl).ImageUrl);
}
else if (ctlType == typeof(WebUI.WebControls.DropDownList))//选择框
{
entity.SetPropertyValue(pi.Name, ((WebUI.WebControls.DropDownList)ctl).SelectedValue);
}
else if (ctlType == typeof(WebUI.WebControls.HiddenField))//隐藏域
{
entity.SetPropertyValue(pi.Name, ((WebUI.WebControls.HiddenField)ctl).Value);
}
else if (ctlType == typeof(WebUI.WebControls.RadioButton))//单选框
{
WebUI.WebControls.RadioButton rb = (WebUI.WebControls.RadioButton)ctl;
if (rb.Checked)
entity.SetPropertyValue(pi.Name, rb.Text);
else
entity.SetPropertyValue(pi.Name, "");
}
else if (ctlType == typeof(WebUI.WebControls.CheckBox))//复选框
{
WebUI.WebControls.CheckBox ck = (WebUI.WebControls.CheckBox)ctl;
if (ck.Checked)
entity.SetPropertyValue(pi.Name, ck.Text);
else
entity.SetPropertyValue(pi.Name, "");
}
else if (ctlType == typeof(WebUI.WebControls.CheckBoxList))//复选框列表
{
WebUI.WebControls.CheckBoxList ck = (WebUI.WebControls.CheckBoxList)ctl;
string rs = "";
foreach (WebUI.WebControls.ListItem li in ck.Items)
{
if (li.Selected)
rs += "," + li.Value;
}
if (rs.Length > 1)
{
rs = rs.Substring(1);
}
entity.SetPropertyValue(pi.Name, rs);
}
else if (ctlType == typeof(WebUI.WebControls.RadioButtonList))//单框列表
{
WebUI.WebControls.RadioButtonList ck = (WebUI.WebControls.RadioButtonList)ctl;
entity.SetPropertyValue(pi.Name, ck.SelectedValue);
}
else if (ctlType == typeof(WebUI.WebControls.ListBox))//列表框
{
WebUI.WebControls.ListBox ck = (WebUI.WebControls.ListBox)ctl;
string rs = "";
foreach (WebUI.WebControls.ListItem li in ck.Items)
{
if (li.Selected)
rs += "," + li.Value;
}
if (rs.Length > 1)
{
rs = rs.Substring(1);
}
entity.SetPropertyValue(pi.Name, rs);
}
#endregion
#region 处理不同Html控件
else if (ctlType == typeof(WebUI.HtmlControls.HtmlInputText))//文本域
{
WebUI.HtmlControls.HtmlInputText ct = (WebUI.HtmlControls.HtmlInputText)ctl;
entity.SetPropertyValue(pi.Name, ct.Value);
//.........这里部分代码省略.........