HeavenWu / slimdx

Automatically exported from code.google.com/p/slimdx
MIT License
0 stars 0 forks source link

Error in WPF Example #700

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
Disregard

Original comment by BigManSh...@gmail.com on 10 Jul 2010 at 4:09

GoogleCodeExporter commented 8 years ago

Original comment by josh.petrie on 12 Jul 2010 at 4:31