It's like the old Sesame Street song, "One of these things isn't like the other."
I'm writing in WPF C# and I want to recycle some code I wrote a couple of years ago. In my old project I have a progress bar and here is what the properties look like:
In my new project I just added a progress bar (easy peasy) and I wanted to recycle my old code for changing the color of the bar based on value and some other stuff. But this is what the properties look like for this new progress bar:
So, what's going on? No MarqueeAnimationSpeed, no Step value (in the new progress bar)!?!? Also, it throws an error when I try to set the ForeColor.
I'm using Visual Studio 2010 for both projects. They're both WPF, C#. But, clearly these two progress bars are very different. I want the new progress bar to look and act like the old progress bar.
What am I doing wrong?
Thanks.