Hello.
I saw the post in 2013. At that time, it was impossible to implement.
Is it possible now? Putting something like "ItemsSource={bindg WorkBook}" in telerik:RadSpreadsheet and binding it with MVVM?
Even when called like this, a workbook and a worksheet are created and bound in the viewmodel, and modifications should be possible afterwards.
About 8years have passed. But there are not many posts.
If possible, ask for examples. Thanks.
<Like this>View(*.xaml)<telerik:RadSpreadsheet ItemsSource={binding WorkBookItem} />.........ViewModel(*.cs)public WorkBook WorkBookItem {get;set;}~....var workbook = new Workbook();Worksheet workSheet;workSheet = workbook .Worksheets.Add();workSheet.Name = "Name";WorkBookItem= workbook ;
