↧
WPF datagrid
First of all you need to turn the name and val fields of your class into properties. Then you have to raise the PropertyChanged event for these properties whenever you set them to some new value:...
View ArticleWPF datagrid
Hi,Try the below.<Window x:Class="DatagridLazy_Learning.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"...
View ArticleWPF datagrid
I have a data grid, which displays List of below objects:Class Sample : INotifyPropertyChanged{int name;int val;}List<Sample> data;UI loads with some set of Data values, after few min "data" gets...
View Article