I am converting some ASP.Net controls to Silverlight. Is there something similar to ASP.Net’s EditItemTemplate in Silverlight’s DataGrid or ListBox?
I am converting some ASP.Net controls to Silverlight. Is there something similar to ASP.Net’s
Share
Edit templating in the Silverlight
DataGridis performed at the cell level. If theDataGriddefault choices are not what you need then you need to use the DataGridTemplateColumn and define both aCellTemplateand aCellEditingTemplate.The
ListBoxdoes not support the context of an “edit mode” however you can supply anItemTemplatewhich contains control such asTextBoxwhich will allow editing of the underlying data.