Silverlight 3 中的数据形式

发布于 2024-08-12 04:52:54 字数 224 浏览 5 评论 0原文

我正在使用 Dataform 在我的 Silverlight 应用程序中显示一个对象。这是一个简单的输入页面,您可以在其中输入值,底部的“保存”按钮将信息提交到数据库。

我的对象包含 7 个数据字段,我只需要显示其中 5 个。另外两个数据字段直接添加到数据库中。

我的 silverlight 应用程序通过 WCF 服务与数据库进行通信。

那么,问题是我可以过滤数据表单上的数据字段吗?

I am using Dataform to show a object in my Silverlight application. It is a simple Input page which where you can input value and the SAVE button at the bottom submits the information to the database.

My object contains 7 data fields, out of which I need to show only 5 of them. The other two data fields are added in the database directly.

My silverlight application communicates to the database via WCF services.

So, the question is can I filter data fields on the dataform?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

π浅易 2024-08-19 04:52:54

如果您要自动生成 DataForm,则可以使用

[Display(AutoGenerateField=false)]
public string SomeProperty {get;set;}

此属性以前在 SL3 beta 中称为“可绑定”,此后在 RTM 版本中已更改。更多信息此处

If you are Auto-generating the DataForm, you can use

[Display(AutoGenerateField=false)]
public string SomeProperty {get;set;}

This attribute was previously called Bindable in the SL3 beta, and has since changed in the RTM release. More info here

随梦而飞# 2024-08-19 04:52:54

中的片段

以下是 xaml 文件dataFormToolkit:DataForm
x:名称=“数据表单”
提交按钮内容=“保存”
取消按钮内容=“取消”
自动编辑=“真”
AutoGenerateFields="False"

以下是 xaml.cs 文件中的片段

    public CreateProduct()
    {
        InitializeComponent();
        this.Loaded += new RoutedEventHandler(CreateProduct_Loaded);


    }

    private void CreateProduct_Loaded(object sender, RoutedEventArgs e)
    {

        ServiceReference.Product model = new ServiceReference.Product();
        dataForm.CurrentItem = model;
    }

Following is the snippet from xaml file

dataFormToolkit:DataForm
x:Name="dataForm"
CommitButtonContent="Save"
CancelButtonContent="Cancel"
AutoEdit="True"
AutoGenerateFields="False"

Following is the snippet from xaml.cs file

    public CreateProduct()
    {
        InitializeComponent();
        this.Loaded += new RoutedEventHandler(CreateProduct_Loaded);


    }

    private void CreateProduct_Loaded(object sender, RoutedEventArgs e)
    {

        ServiceReference.Product model = new ServiceReference.Product();
        dataForm.CurrentItem = model;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文