how do you determine if a component is at design mode

  • Thread starter Thread starter PGP
  • Start date Start date
P

PGP

In the full framework, there is the Component.DesignMode property. What is
the alternative for compact framework?

TIA
Priyesh
 
In the full framework, there is the Component.DesignMode property. What is
the alternative for compact framework?

TIA
Priyesh

I do:
bool designMode;

if (this.Site == null)
{
designMode = false;
}
else
{
designMode = this.Site.DesignMode;
}
 
Back
Top