ManipulationStartingRoutedEventArgs.Handled 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,這個值會將路由事件標示為已處理。 將 設定為 true 可防止事件路由上的大部分處理常式再次處理相同的事件。
public:
property bool Handled { bool get(); void set(bool value); };
bool Handled();
void Handled(bool value);
public bool Handled { get; set; }
var boolean = manipulationStartingRoutedEventArgs.handled;
manipulationStartingRoutedEventArgs.handled = boolean;
Public Property Handled As Boolean
屬性值
Boolean
bool
true 表示標示已處理的路由事件; false 會讓路由事件保持未處理,這可讓事件進一步路由。 預設值為 false。