DevExpress の ASPxTrackBar でのタイトルフォント設定のサンプルです。
現状の画面デザインはこのようになっています。
<タイトルフォント設定>
「Font-Bold=”True”」、「Font-Size=”Medium”」を設定します。
【サンプルプログラム】
1 2 3 4 5 6 7 8 9 10 11 |
<form id="form1" runat="server"> <div> <dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server" Caption="分設定" LargeTickInterval="10" MaxValue="60" Position="0" PositionStart="0" ScalePosition="Both" Theme="RedWine" Width="350px"> <CaptionSettings ShowColon="False" VerticalAlign="Middle" /> <CaptionStyle Font-Bold="True" Font-Size="Medium" ForeColor="Blue"> </CaptionStyle> </dx:ASPxTrackBar> </div> </form> |
それでは、実行して動作確認を行います。
↓
無事にトラックバーのタイトルフォント設定が出来ました。
- 投稿タグ
- ASPxTrackBar