Using exmaple from the trunk for WPF integration there is an error in
MyDataModel.cs
public Color Color
{
get
{
return m_color;
}
set
{
if (m_color != value)
{
m_color = value;
Color4 = new Color4(m_color); <----- (Is a type but is being used like a Variable)
_control.ForceRendering();
}
}
}
Original issue reported on code.google.com by BigManSh...@gmail.com on 10 Jul 2010 at 4:03
Original issue reported on code.google.com by
BigManSh...@gmail.com
on 10 Jul 2010 at 4:03