DevExpress の「ASPxProgressBar(プログレスバー)」でのデザイン(テーマ一覧)のサンプルです。
各オブジェクトのテーマ設定は見てみないと違いが分かりません。
今回はプログレスバーのテーマ一覧を作成しました。
プログレスバーのテーマ部分は、画面の側です。
中身の各オブジェクトは別テーマ設定を行っています。
<デザイン(テーマ一覧)>
「Theme=”RedWine”」の部分でテーマ設定を行います。
テーマの設定手順は、
過去ブログの「DevExpress のテーマ設定(デザイン)」を参照して下さい。
【サンプルプログラム】
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> </head> <body> <form id="form1" runat="server"> <div> <dx:aspxprogressbar runat="server" position="80" width="300px" Caption="達成率" CustomDisplayFormat="" Height="30px" Maximum="200" Theme="RedWine"> <CaptionSettings HorizontalAlign="Center" Position="Top" ShowColon="False" /> </dx:aspxprogressbar> </div> </form> </body> </html> |
【Default】
【Aqua】
【BlackGlass】
【DevEx】
【Glass】
【iOS】
【Metropolis】
【MetropolisBlue】
【Moderno】
【Mulberry】
【Office2003Blue】
【Office2003Olive】
【Office2003Silver】
【Office2010Black】
【Office2010Blue】
【Office2010Silver】
【PlasticBlue】
【RedWine】
【SoftOrange】
【Youthful】
- 投稿タグ
- ASPxProgressBar






















