Пример #1
0
 /// <summary>
 /// Sets the stretch <see cref="StretchDirection"/> associated with the specified <see cref="Windows.UI.Xaml.Controls.ListViewBase"/>
 /// </summary>
 /// <param name="obj">The <see cref="Windows.UI.Xaml.Controls.ListViewBase"/> to associate the <see cref="StretchDirection"/> with</param>
 /// <param name="value">The <see cref="StretchDirection"/> for binding to the <see cref="Windows.UI.Xaml.Controls.ListViewBase"/></param>
 public static void SetStretchItemContainerDirection(Windows.UI.Xaml.Controls.ListViewBase obj, StretchDirection value)
 {
     obj.SetValue(StretchItemContainerDirectionProperty, value);
 }
Пример #2
0
 /// <summary>
 /// Sets the alternate <see cref="Brush"/> associated with the specified <see cref="DependencyObject"/>
 /// </summary>
 /// <param name="obj">The <see cref="Windows.UI.Xaml.Controls.ListViewBase"/> to associate the <see cref="Brush"/> with</param>
 /// <param name="value">The <see cref="Brush"/> for binding to the <see cref="Windows.UI.Xaml.Controls.ListViewBase"/></param>
 public static void SetAlternateColor(Windows.UI.Xaml.Controls.ListViewBase obj, Brush value)
 {
     obj.SetValue(AlternateColorProperty, value);
 }
Пример #3
0
 /// <summary>
 /// Sets the <see cref="DataTemplate"/> associated with the specified <see cref="Windows.UI.Xaml.Controls.ListViewBase"/>
 /// </summary>
 /// <param name="obj">The <see cref="Windows.UI.Xaml.Controls.ListViewBase"/> to associate the <see cref="DataTemplate"/> with</param>
 /// <param name="value">The <see cref="DataTemplate"/> for binding to the <see cref="Windows.UI.Xaml.Controls.ListViewBase"/></param>
 public static void SetAlternateItemTemplate(Windows.UI.Xaml.Controls.ListViewBase obj, DataTemplate value)
 {
     obj.SetValue(AlternateItemTemplateProperty, value);
 }