GrapeCity.Win.Common 名前空間 > SymbolButton クラス : Symbol プロパティ |
例外 | 解説 |
---|---|
System.ComponentModel.InvalidEnumArgumentException | 指定された値がSymbols値の1つではありません。 |
次のサンプルコードは、SymbolButtonを作成し、ボタンの一般的なプロパティを設定します。
このサンプルコードは、GrapeCity.Win.Containers.GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。その元の例では、最初にcomboBox1からSymbolButton項目を選択してgcComboFrame1にSymbolButtonを表示し、次にDropDownButtonをクリックしてドロップダウンウィンドウを開閉できます。
// Returns a SymbolButton instance for gcComboFrame1. private SideButtonBase CreateSymbolButton() { SymbolButton symbolButton = new SymbolButton(); // Specify a unique name for this button. symbolButton.Name = "SymbolButton"; // Specify one kind of symbol and the symbol's direction for this button. symbolButton.Symbol = Symbols.DoubleArrow; symbolButton.SymbolDirection = SymbolDirection.Down; // Set this button not be shown. symbolButton.Visible = ButtonVisibility.NotShown; // Set button's position. symbolButton.Position = ButtonPosition.RightOutside; return symbolButton; }
' Returns a SymbolButton instance for gcComboFrame1. Private Function CreateSymbolButton() As SideButtonBase Dim symbolButton As New SymbolButton() ' Specify a unique name for this button. symbolButton.Name = "SymbolButton" ' Specify one kind of symbol and the symbol's direction for this button. symbolButton.Symbol = Symbols.DoubleArrow symbolButton.SymbolDirection = SymbolDirection.Down ' Set this button not be shown. symbolButton.Visible = ButtonVisibility.NotShown ' Set button's position. symbolButton.Position = ButtonPosition.RightOutside Return symbolButton End Function
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2