0

I use master-detail scenario to show and update data of selected object.

So this scenario allows me to implement read, update and delete operations.

But how to implement create operation?

I used a data template inside of ContentControl. But the controls in this data template is inaccessable from the main window class. So I can't read its values to fill new object's data.

Do I have to create a new window with the same controls structure as inside the data template and to use it for create operations? Or something else?

4

1 に答える 1

0

ええと、私はちょうど新しい空のオブジェクトを作成し、それをオブジェクトリストに追加し、ユーザーがこの新しいオブジェクトを一度に編集できるようにすることにしました。いい解決策ですね :)

しかし、より良い解決策はありますか?

加えて:

データテンプレート内と同じコントロール構造で新しいウィンドウを作成し、それを作成操作に使用する必要がありますか?

Win Fromsでは、このアプローチを使用して、コレクションまたはデータベースに新しいオブジェクトを追加しました。

于 2012-01-11T04:18:50.860 に答える