I have problem with devexpress wpf gridcontol. I have Instrument class which I bind to gridcontrol. This class contains property with custom type (Price). In Price I have two property Value and LastValue. When I changed Value in Price and Raise PropertyChanged - nothing changed in grid control. I can see the changes only after I clicked the cell that had been changed.
How can I fix my code in order to see the changes at once?
Here my code
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:DXWPFApplication1"
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
xmlns:dxd="http://schemas.devexpress.com/winfx/2008/xaml/docking"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
x:Class="DXWPFApplication1.MainWindow"
Title="DXApplication" Height="500" Width="510"
SnapsToDevicePixels="True" UseLayoutRounding="True"
>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="50"/>
<RowDefinition />
</Grid.RowDefinitions>
<Button Grid.Row="0" Click="Button_Click_1">
Inc value and raise property changed
</Button>
<dxg:GridControl Grid.Row="1" x:Name="grid1" AutoPopulateColumns="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" >
</dxg:GridControl>
</Grid>
</Window>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using DevExpress.Xpf.Layout.Core;
using DevExpress.Xpf.Docking;
using System.ComponentModel;
using System.Collections.ObjectModel;
namespace DXWPFApplication1
{
public partial class MainWindow : Window
{
public class Price
{
public Price(int val)
{
Value = val;
}
public int Value { set; get; }
public int LastValue { set; get; }
public override string ToString()
{
return string.Format ("{0}({1})",Value,LastValue);
}
}
public class Instrument : INotifyPropertyChanged
{
Price _price;
public Instrument(int value)
{
_price = new Price(value);
}
public Price Price
{
set
{
_price = value;
if (PropertyChanged != null) PropertyChanged(this, new PropertyChangedEventArgs("Price"));
}
get
{
return _price;
}
}
public void RaiseNotify()
{
PropertyChanged(this, new PropertyChangedEventArgs("Price"));
}
public event PropertyChangedEventHandler PropertyChanged;
}
public ObservableCollection<Instrument> col = new ObservableCollection<Instrument>();
Instrument MyInstument = new Instrument(1);
public MainWindow()
{
InitializeComponent();
col.Add(MyInstument);
grid1.ItemsSource = col;
}
private void Button_Click_1(object sender, RoutedEventArgs e)
{
MyInstument.Price.Value++;
MyInstument.RaiseNotify();
}
}
}