コード例 #1
0
 /// <summary>
 /// Gets the <see cref="CommandProperty"/> instance assocaited with the specified <see cref="Windows.UI.Xaml.Documents.Hyperlink"/>
 /// </summary>
 /// <param name="obj">The <see cref="Windows.UI.Xaml.Documents.Hyperlink"/> from which to get the associated <see cref="CommandProperty"/> value</param>
 /// <returns>The <see cref="CommandProperty"/> value associated with the the <see cref="Windows.UI.Xaml.Documents.Hyperlink"/> or null</returns>
 public static object GetCommandParameter(Windows.UI.Xaml.Documents.Hyperlink obj)
 {
     return(obj.GetValue(CommandParameterProperty));
 }
コード例 #2
0
 /// <summary>
 /// Gets the <see cref="ICommand"/> instance assocaited with the specified <see cref="Windows.UI.Xaml.Documents.Hyperlink"/>
 /// </summary>
 /// <param name="obj">The <see cref="Windows.UI.Xaml.Documents.Hyperlink"/> from which to get the associated <see cref="ICommand"/> instance</param>
 /// <returns>The <see cref="ICommand"/> instance associated with the the <see cref="Windows.UI.Xaml.Documents.Hyperlink"/> or null</returns>
 public static ICommand GetCommand(Windows.UI.Xaml.Documents.Hyperlink obj)
 {
     return((ICommand)obj.GetValue(CommandProperty));
 }