无论如何都要将propertgrid绑定到商店。 我在这里找到一个示例,这是将数据绑定到propertgrid的唯一方法吗?我想绑定数据,如绑定gridview谢谢
<script runat="server">
protected void Populate(object sender, DirectEventArgs e)
{
PropertyGridParameter p = new PropertyGridParameter();
p.Name = "dynamic";
p.Value = "property";
p.Editor.Add(new ComboBox());
this.PropertyGrid1.SetSource(new PropertyGridParameterCollection() { p }, true);
}
</script>
<!DOCTYPE html>
<html>
<head runat="server">
<title>Ext.NET v2 Example</title>
</head>
<body>
<form runat="server">
<ext:ResourceManager runat="server" />
<ext:Button runat="server" Text="Populate" OnDirectClick="Populate" />
<ext:PropertyGrid ID="PropertyGrid1" runat="server">
<Source>
<ext:PropertyGridParameter Name="initial" Value="property" />
</Source>
</ext:PropertyGrid>
</form>
</body>
</html>
答案 0 :(得分:1)
PropertyGrid在内部使用自己的商店,其不可用于以与使用GridPanel类似的方式绑定数据。
我认为如果你有这样的要求,没有什么能阻止你使用一个普通的GridPanel。