Add an UltraManager component to your form. Set its StyleSet property to e.g., "Office2016Blue". All Infragistics controls on that form instantly adopt the theme.

Better yet, use the built-in conditional formatting manager:

Microsoft’s native WinForms toolbox gets the job done, but elevates your application from functional to professional and efficient. As you have seen in this tutorial, complex tasks like Excel export, hierarchical grids, conditional formatting, and interactive charting become trivial.

This tutorial will guide you from zero to a fully functional, data-driven Windows Forms application using Infragistics controls. You will learn installation, layout, data binding, styling, and advanced grid manipulation.

var format = ultraGrid1.DisplayLayout.ConditionalFormatting.Add(); format.Condition = new Infragistics.Win.UltraWinGrid.Condition( "TotalAmount", ConditionOperator.GreaterThan, 2000m ); format.Appearance.BackColor = Color.LightGreen; format.Appearance.Font.Bold = DefaultableBoolean.True;

Before delving into a tutorial structure, it is crucial to understand why a developer would invest time in learning a commercial library. The native Windows Forms toolbox provides essential controls: Button , TextBox , DataGridView , ListBox , and MenuStrip . However, modern applications demand more:

Infragistics includes a built-in exporter:

Close