StylusDevice.ActiveSource Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает PresentationSource, сообщающий текущий ввод для этого пера.
public:
virtual property System::Windows::PresentationSource ^ ActiveSource { System::Windows::PresentationSource ^ get(); };
public override System.Windows.PresentationSource ActiveSource { [System.Security.SecurityCritical] get; }
public override System.Windows.PresentationSource ActiveSource { get; }
[<get: System.Security.SecurityCritical>]
member this.ActiveSource : System.Windows.PresentationSource
member this.ActiveSource : System.Windows.PresentationSource
Public Overrides ReadOnly Property ActiveSource As PresentationSource
Значение свойства
PresentationSource, сообщающий текущий ввод для этого пера.
- Атрибуты
Примеры
В следующем примере показано ActiveSource свойство .
PresentationSource myPresentationSource = myStylusDevice.ActiveSource;
if (null == myPresentationSource)
{
textbox1.AppendText("ActiveSource : null\n");
}
else
{
textbox1.AppendText("ActiveSource :" + myPresentationSource.ToString() + "\n");
}
Dim myPresentationSource As PresentationSource = myStylusDevice.ActiveSource
If IsNothing(myPresentationSource) Then
textbox1.AppendText("ActiveSource : null" + vbCrLf)
Else
textbox1.AppendText("ActiveSource :" + myPresentationSource.ToString() + vbCrLf)
End If
Применяется к
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.