• How do I dynamically change Application Style settings at runtime?

    In Visual Basic:

    Private Sub Page_Load(ByVal sender As System.Object, _
      ByVal e As System.EventArgs) Handles MyBase.Load
    	Dim settings As AppStylingManager = AppStylingManager.Settings
    	settings.StyleSetName = "Office2007Black"
    End Sub
    …
  • How do I set Application Styling settings through the Web.Config?

    You can use the AppStyling Visual Studio Add-in which is available from the Tools menu in Visual Studio. 

    Alternatively, you can manually add the settings into your web.config as seen below.

    <configSections>
      <section name="infragistics.web…