StylusButtons.Count 屬性
取得手寫筆的按鈕數。
命名空間: Microsoft.StylusInput
組件: Microsoft.Ink (在 Microsoft.Ink.dll 中)
語法
'宣告
Public ReadOnly Property Count As Integer
'用途
Dim instance As StylusButtons
Dim value As Integer
value = instance.Count
public int Count { get; }
public:
property int Count {
int get ();
}
/** @property */
public int get_Count()
public function get Count () : int
屬性值
型別:System.Int32
手寫筆的按鈕數。
備註
這個集合中提供的按鈕清單表示數位板支援的項目,而不一定是畫筆上呈現的項目。您可以在外掛程式收到 StylusButtonDown 和 StylusButtonUp 通知時,決定特定手寫筆按鈕的狀態,以及確認其是否存在。
範例
在這個 Microsoft Visual C# .NET 範例中,會示範表單上所實作 StylusInRange 方法的事件處理常式:
public class Form1 : Form, IStylusAsyncPlugin
{
private RealTimeStylus rts;
private DynamicRenderer dr;
private System.Windows.Forms.TextBox textBox1;
public Form1()
{
rts = new RealTimeStylus(this);
dr = new DynamicRenderer(this);
rts.SyncPluginCollection.Add(dr);
rts.AsyncPluginCollection.Add(this);
rts.Enabled = true;
dr.Enabled = true;
InitializeComponent();
}
// ...
public Microsoft.StylusInput.DataInterestMask DataInterest
{
get{return DataInterestMask.AllStylusData;}
}
public void StylusInRange(RealTimeStylus sender, StylusInRangeData data)
{
string sInverted = data.Stylus.Inverted ? "is inverted" : "is not inverted";
textBox1.AppendText(
string.Format("{0} in range; {1}; has {2} buttons:{3}",
data.Stylus.Name,
sInverted,
data.Stylus.Buttons.Count,
Environment.NewLine)
);
for (int i=0; i<data.Stylus.Buttons.Count; i++)
{
textBox1.AppendText(
string.Format(" {0}: {1}{2}",
i.ToString(),
data.Stylus.Buttons.GetName(i),
Environment.NewLine)
);
}
}
// ...
平台
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0
請參閱
參考
Microsoft.StylusInput.PluginData.StylusButtonDataBase