Bagikan melalui


CoreFrameworkInputView.PrimaryViewAnimationStarting Kejadian

Definisi

Animasi dalam aplikasi yang terjadi sebagai respons terhadap peragaan atau persembunyian panel input yang terkait dengan CoreFrameworkInputView.

// Register
event_token PrimaryViewAnimationStarting(TypedEventHandler<CoreFrameworkInputView, CoreFrameworkInputViewAnimationStartingEventArgs const&> const& handler) const;

// Revoke with event_token
void PrimaryViewAnimationStarting(event_token const* cookie) const;

// Revoke with event_revoker
CoreFrameworkInputView::PrimaryViewAnimationStarting_revoker PrimaryViewAnimationStarting(auto_revoke_t, TypedEventHandler<CoreFrameworkInputView, CoreFrameworkInputViewAnimationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreFrameworkInputView,CoreFrameworkInputViewAnimationStartingEventArgs> PrimaryViewAnimationStarting;
function onPrimaryViewAnimationStarting(eventArgs) { /* Your code */ }
coreFrameworkInputView.addEventListener("primaryviewanimationstarting", onPrimaryViewAnimationStarting);
coreFrameworkInputView.removeEventListener("primaryviewanimationstarting", onPrimaryViewAnimationStarting);
- or -
coreFrameworkInputView.onprimaryviewanimationstarting = onPrimaryViewAnimationStarting;
Public Custom Event PrimaryViewAnimationStarting As TypedEventHandler(Of CoreFrameworkInputView, CoreFrameworkInputViewAnimationStartingEventArgs) 

Jenis Acara

Keterangan

Tampilan utama mengacu pada salah satu tampilan CoreInputViewKind.Keyboard atau CoreInputViewKind.Handwriting , sementara CoreInputView dapat menjadi salah satu nilai dari CoreInputViewKind.

UI aplikasi me-reflow berdasarkan CoreInputViewOcclusion.OccludingRect, yang merupakan rect kosong saat bersembunyi.

Berlaku untuk

Lihat juga