CommandButton
devexpressフォームで使用したいと思います。.glyph
を大きな画像に設定しました。次に、PaintStyle
(キャプションも表示することがわかった唯一の方法)をCaptionGlyph
値に設定します。アイコンの横にキャプションを配置します。アイコンの下に配置するにはどうすればよいですか(左のLargeButtonを参照)。
質問する
383 次
1 に答える
0
の のみが必要だったので、既存のコンポーネント.command
からCommandButton
新しいコンポーネントを作成することにしましBarLargeButtonItem
たISupportReportCommand
。これに関する唯一の問題は、.designer.csファイルを変更することによってのみこれをフォームに配置できることです.lammeですが、機能します.
他の誰かがそのようなものを必要とする場合のコードは次のとおりです。
DevExpress.XtraBars を使用します。 DevExpress.XtraReports.UserDesigner の使用; システムを使用する; System.Collections.Generic の使用; System.Linq を使用します。 System.Text を使用します。 名前空間 StefaniaNET.Nyomtatvanyok.Komponensek { public class Gomb : BarLargeButtonItem、ISupportReportCommand { パブリックゴンブ() { #region alapbeállítások PaintStyle = BarItemPaintStyle.CaptionGlyph; CaptionAlignment = BarItemCaptionAlignment.Bottom; #endregion } #region ISupportReportCommand の実装 public ReportCommand コマンド { get; 設定; } //public ReportCommand コマンド //{ // get { throw new NotImplementedException(); } //} #endregion } }
于 2013-11-04T10:34:19.253 に答える