Silverlight 3 中的数据形式
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您要自动生成 DataForm,则可以使用
此属性以前在 SL3 beta 中称为“可绑定”,此后在 RTM 版本中已更改。更多信息此处
If you are Auto-generating the DataForm, you can use
This attribute was previously called Bindable in the SL3 beta, and has since changed in the RTM release. More info here
中的片段
以下是 xaml 文件dataFormToolkit:DataForm
x:名称=“数据表单”
提交按钮内容=“保存”
取消按钮内容=“取消”
自动编辑=“真”
AutoGenerateFields="False"
以下是 xaml.cs 文件中的片段
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