.NET Compact Framework 1.0 SP2 Redistributable (Re-release)

  • Thread starter Thread starter Timo Meier
  • Start date Start date
T

Timo Meier

How can I use the new features/properties of the .NET Compact Framework 1.0
SP2 Redistributable (Re-release)
in my Visual Studio? For example Back and Forecolor of a button?

Regards,
Timo
 
Just add them in your code (the designer doesn't expose these properties).
E.g. in the constructor of your form after InitializeComponent is called
add.

button1.BackColor = Color.Red

for example

Peter
 
Back
Top