PowerTools InputMan for ASP.NET 8.0J
FunctionKeyButtons プロパティ
使用例 

ファンクションキーボタンとして使用するFunctionKeyButtonオブジェクトのコレクションを設定します。
構文
Public ReadOnly Property FunctionKeyButtons As Collection(Of FunctionKeyButton)
public Collection<FunctionKeyButton> FunctionKeyButtons {get;}
解説
特定のファンクションキーに動作を割り当てるには、指定のキーをファンクションキーコントロールに追加する必要があります。ファンクションキーコントロールに追加するファンクションキーは、FunctionKeyButtonクラスを使用します。
使用例
次のサンプルコードでは、ファンクションキーコントロールに[F1]〜[F3]キーを追加する方法を示します。
Imports GrapeCity.Web.Input.IMFunctionKey

Dim fb1 As New FunctionKeyButton
fb1.FunctionKey = FunctionKeys.F1
fb1.Text = "新規"

Dim fb2 As New FunctionKeyButton
fb2.FunctionKey = FunctionKeys.F2
fb2.Text = "更新"

Dim fb3 As New FunctionKeyButton
fb3.FunctionKey = FunctionKeys.F3
fb3.Text = "追加"

GcFunctionKey1.FunctionKeyButtons.Add(fb1)
GcFunctionKey1.FunctionKeyButtons.Add(fb2)
GcFunctionKey1.FunctionKeyButtons.Add(fb3)
using GrapeCity.Web.Input.IMFunctionKey;

FunctionKeyButton fb1 = new FunctionKeyButton();
fb1.FunctionKey = FunctionKeys.F1;
fb1.Text = "新規";

FunctionKeyButton fb2 = new FunctionKeyButton();
fb2.FunctionKey = FunctionKeys.F2;
fb2.Text = "更新";

FunctionKeyButton fb2 = new FunctionKeyButton();
fb3.FunctionKey = FunctionKeys.F3;
fb3.Text = "追加";

GcFunctionKey1.FunctionKeyButtons.Add(fb1);
GcFunctionKey1.FunctionKeyButtons.Add(fb2);
GcFunctionKey1.FunctionKeyButtons.Add(fb3);
参照

GcFunctionKey クラス
GcFunctionKey メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.