Beispiel #1
0
 /// <summary>
 /// Sets the <see cref="CommandProperty"/> assocaited with the specified <see cref="Windows.UI.Xaml.Documents.Hyperlink"/>
 /// </summary>
 /// <param name="obj">The <see cref="Windows.UI.Xaml.Documents.Hyperlink"/> to associated the <see cref="CommandProperty"/> instance to</param>
 /// <param name="value">The <see cref="object"/> to set the <see cref="CommandProperty"/> to</param>
 public static void SetCommandParameter(Windows.UI.Xaml.Documents.Hyperlink obj, object value)
 {
     obj.SetValue(CommandParameterProperty, value);
 }
Beispiel #2
0
 /// <summary>
 /// Sets 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"/> to associated the <see cref="ICommand"/> instance to</param>
 /// <param name="value">The <see cref="ICommand"/> instance to bind to the <see cref="Windows.UI.Xaml.Documents.Hyperlink"/></param>
 public static void SetCommand(Windows.UI.Xaml.Documents.Hyperlink obj, ICommand value)
 {
     obj.SetValue(CommandProperty, value);
 }