0

无论如何将propertgrid绑定到商店。我在这里找到了一个示例,这是将数据绑定到属性网格的唯一方法吗?我想像绑定网格视图一样绑定数据谢谢

<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>
4

1 回答 1

1

PropertyGrid 在内部使用其自己的存储,并且无法以与使用 GridPanel 类似的方式绑定数据。

如果您有这样的要求,我认为没有什么能阻止您使用常见的 GridPanel。

于 2013-08-01T08:51:14.900 回答