PowerTools InputMan for ASP.NET 8.0J > InputMan for ASP.NETの使い方 > コンボコントロール > ドロップダウン機能 |
コンボコントロールには、リストボックスを表示するドロップダウン機能が搭載されています。以下では、このドロップダウン機能について説明します。
GcComboBox1.DropDown.Enabled = True GcComboBox1.DropDown.Visible = True
GcComboBox1.DropDown.Enabled = true; GcComboBox1.DropDown.Visible = true;
Imports GrapeCity.Web.Input.Core GcComboBox1.DropDown.AutoDropDown = True GcComboBox1.DropDown.DropDownShadow = True GcComboBox1.DropDown.Position = ButtonPosition.Outside GcComboBox1.DropDown.ClosingAnimation = DropDownAnimation.Scroll GcComboBox1.DropDown.OpeningAnimation = DropDownAnimation.Fade GcComboBox1.DropDown.ButtonImage = "~/Images/DropDown.png" GcComboBox1.DropDown.PressedButtonImage = "~/Images/PressedDropDown.png"
using GrapeCity.Web.Input.Core; GcComboBox1.DropDown.AutoDropDown = true; GcComboBox1.DropDown.DropDownShadow = true; GcComboBox1.DropDown.Position = ButtonPosition.Outside; GcComboBox1.DropDown.ClosingAnimation = DropDownAnimation.Scroll; GcComboBox1.DropDown.OpeningAnimation = DropDownAnimation.Fade; GcComboBox1.DropDown.ButtonImage = "~/Images/DropDown.png"; GcComboBox1.DropDown.PressedButtonImage = "~/Images/PressedDropDown.png";