Version

Styling the Close Button

The Close button can be styled using the CloseButtonAppearance and CloseButtonHotTrackAppearance properties available on both the Tile.Settings and UltraTilePanel.UltraTileSettings objects.

In Visual Basic:

  ' Display Close button for a specific tile
    tile3.Settings.ShowCloseButton = Infragistics.Win.DefaultableBoolean.[True]
    tile4.Settings.ShowCloseButton = Infragistics.Win.DefaultableBoolean.[True]
  'Set the fore color for a Close Button on a specific tile
    tile3.Settings.CloseButtonAppearance.ForeColor = Color.Red
  ' Set the Hot track Appearance for Close buttons on all tiles
    Me.ultraTilePanel1.TileSettings.CloseButtonHotTrackAppearance.BackColor =   Color. GreenYellow

In C#:

// Display Close button for a specific tile
   tile3.Settings.ShowCloseButton = Infragistics.Win.DefaultableBoolean.True;
   tile4.Settings.ShowCloseButton = Infragistics.Win.DefaultableBoolean.True;
//Set the fore color for a Close Button  on a specific tile
   tile3.Settings.CloseButtonAppearance.ForeColor = Color.Red;
// Set the Hot track Appearance for Close buttons on all tiles
  this.ultraTilePanel1.TileSettings.CloseButtonHotTrackAppearance.BackColor = Color. GreenYellow;
WinTilePanel Styling the Close Button.png