注: このプロパティは Office2007 または Vista ViewStyles では認識されません。
Imports Infragistics.Win.UltraWinEditors ' Turn off themes and set the ViewStyle to Standard. ' If themes are on, themed drawing will overrides the appearance settings below. Me.UltraTrackBar1.UseOsThemes = Infragistics.Win.DefaultableBoolean.False ' If the ViewStyle is not standard, then the ViewStyle drawing will use images for the ' buttons and this will overrides the appearance settings below. Me.UltraTrackBar1.ViewStyle = TrackBarViewStyle.Standard ' Set up the track to be 10 pixels thick and draw a gradient background. Me.UltraTrackBar1.TrackClickAction = TrackClickAction.UseLargeChange Me.UltraTrackBar1.TrackThickness = 10 Me.UltraTrackBar1.TrackAppearance.BackColor = Color.White Me.UltraTrackBar1.TrackAppearance.BackColor2 = Color.Black Me.UltraTrackBar1.TrackAppearance.BackGradientStyle = Infragistics.Win.GradientStyle.VerticalBump
using Infragistics.Win.UltraWinEditors; // Turn off themes and set the ViewStyle to Standard. // If themes are on, themed drawing will override the appearance settings below. this.ultraTrackBar1.UseOsThemes = Infragistics.Win.DefaultableBoolean.False; // If the ViewStyle is not standard, then the ViewStyle drawing will use images for the // buttons and this will override the appearance settings below. this.ultraTrackBar1.ViewStyle = TrackBarViewStyle.Standard; // Set up the track to be 10 pixels thick and draw a gradient background. this.ultraTrackBar1.TrackClickAction = TrackClickAction.UseLargeChange; this.ultraTrackBar1.TrackThickness = 10; this.ultraTrackBar1.TrackAppearance.BackColor = Color.White; this.ultraTrackBar1.TrackAppearance.BackColor2 = Color.Black; this.ultraTrackBar1.TrackAppearance.BackGradientStyle = Infragistics.Win.GradientStyle.VerticalBump;