名前空間一覧 > GrapeCity.Web.Input.IMFunctionKey 名前空間 : FunctionKeyButton クラス |
Public Class FunctionKeyButton Inherits GrapeCity.Web.Input.Core.BaseViewState
public class FunctionKeyButton : GrapeCity.Web.Input.Core.BaseViewState
Imports GrapeCity.Web.Input.IMFunctionKey ' FunctionKeyButtonオブジェクトを作成します。 Dim fb1 As New FunctionKeyButton fb1.BackColor = Color.LightBlue fb1.ForeColor = Color.Blue fb1.Font.Bold = True fb1.FunctionKey = FunctionKeys.F1 fb1.ForbidReservedKeyBehavior = True fb1.DisplayStyle = DisplayStyle.ImageAndText fb1.Text = "F1" fb1.Image = "~/F1Image.bmp" ' 作成したファンクションキーボタンをファンクションキーコントロールに追加します。 GcFunctionKey1.FunctionKeyButtons.Add(fb1)
using GrapeCity.Web.Input.IMFunctionKey; // FunctionKeyButtonオブジェクトを作成します。 FunctionKeyButton fb1 = new FunctionKeyButton(); fb1.BackColor = Color.LightBlue; fb1.ForeColor = Color.Blue; fb1.Font.Bold = true; fb1.FunctionKey = FunctionKeys.F1; fb1.ForbidReservedKeyBehavior = true; fb1.DisplayStyle = DisplayStyle.ImageAndText; fb1.Text = "F1"; fb1.Image = "~/F1Image.bmp"; // 作成したファンクションキーボタンをファンクションキーコントロールに追加します。 GcFunctionKey1.FunctionKeyButtons.Add(fb1);
System.Object
GrapeCity.Web.Input.Core.NotifyObject
GrapeCity.Web.Input.Core.BaseViewState
GrapeCity.Web.Input.IMFunctionKey.FunctionKeyButton