silverlight4 MVVM 如何使用两种形式在网格上编辑 EF4
C# VS2010 SL4 MVVM EF4
需要替换数据网格上的编辑。
任何人都可以向我指出 SL4 MVVM 示例代码。要求如下:
我有2个用户控件。 其中显示一个“编辑”按钮和一个数据网格,其中每一行都包含一个 EF 对象。 另一个只是带有文本框和保存按钮的用户控件。 (称为编辑表单)
用户从网格中选择包含 EF 对象的行,然后单击编辑按钮对其进行更改。 网格被显示所选行内容的编辑表单取代, 用户将更改应用于数据并单击“保存”按钮。 此编辑表单现在关闭并且 更改的行现在显示具有编辑值的行。
谢谢。
C# VS2010 SL4 MVVM EF4
need to replace edit in place on a datagrid.
any one can point me to a SL4 MVVM sample code. the requirements are as follows:
I have 2 usercontrols.
One shows an Edit button and a Datagrid where each row is containing an EF object.
the other is just a usercontrol with a textboxes and a Savebutton. (is called edit form)
the user selects from grid a row containing an EF object an click the edit button to change it.
the grid is replaced by the edit form showing the contents of the selected row,
user applies changes to the data and clicks the SaveButton.
this edit forms now closes and
the changed row now shows the row with editted values.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 Silverlight 工具包中的 DataForm。您可以将 DataForm 上的 CurrentItem 设置为 DataGrid 中的 SelectedItem。
Try using the DataForm in the Silverlight toolkit. You can set the CurrentItem on the DataForm to the SelectedItem from the DataGrid.